Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

57 changes: 57 additions & 0 deletions public/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
.local_video {
width: 320px;
height: 240px;
border: 1px solid black; }

.wrapper {
font-family: sans-serif;
font-size: 16px;
line-height: 1.5; }
33 changes: 33 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<!-- meta-->
<title>kayac-html5-starter</title>
<meta name="description" content="kayac-html5-starter web page.">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="format-detection" content="telephone=no">
<!-- smartphone meta-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no">
<!-- ogp-->
<meta property="og:type" content="website">
<meta property="og:title" content="kayac-html5-starter">
<meta property="og:site_name" content="kayac-html5-starter">
<meta property="og:description" content="kayac-html5-starter web page.">
<meta property="og:locale" content="ja_JP">
<!-- twitter card-->
<meta property="twitter:card" content="summary">
<meta property="twitter:title" content="kayac-html5-starter">
<meta property="twitter:description" content="kayac-html5-starter web page.">
<!-- stylesheet-->
<link rel="stylesheet" href="/css/style.css?v=2">
</head>
<body>
<div class="wrapper">
<button id="start">Start</button>
<video id="local_video" autoplay></video>
</div>
<!-- javascript-->
<script src="/js/script.js?v=2"></script>
</body>
</html>
Loading