-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
62 lines (49 loc) · 1.33 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=620" />
<title>HTML 5 Hello World!</title>
<style type="text/css" media="screen">
body {
font-family: "Lucida Grande", Verdana;
}
#wrapper {
margin: 0 auto;
width: 600px;
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border: 1px solid #999;
-webkit-box-shadow: 2px 2px 2px 2px #ddd;
-moz-box-shadow: 2px 2px 2px 2px #ddd;
padding: 20px;
}
footer {
color: #ccc;
margin-top: 10px;
border-top: 1px dashed #ccc;
}
.note {
background-color: #EFFD3F;
padding: 4px;
font-size: 90%;
}
</style>
</head>
<body>
<section id="wrapper">
<header>
<img src="screenshot.png"/>
</header>
<article>
<p>
This is a demo of html5 page.</p>
<p class="note">Note: You need to have at least <code>index.html</code> and <code>screenshot.png</code> under your application root folder. </p>
</article>
<footer>
<p>Feel free to use this as your initial structure. </p>
</footer>
</section>
</body>
</html>