-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstructure.html
More file actions
53 lines (44 loc) · 1.18 KB
/
Copy pathstructure.html
File metadata and controls
53 lines (44 loc) · 1.18 KB
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
<!DOCTYPE htlm>
<html lang="ja">
<head>
<title>HTML Structure</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta charset="utf-8"/>
<meta name="description" content="Waseda">
<meta name="keywords" content="Waseda, Mobile, Programing">
<!-- device width, no scaling -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- website icons -->
<link rel="icon" href="image/favicon.png">
<link rel="shortcut icon" href="image/favicon.png">
<link rel="apple-touch-icon" href="image/favicon.png">
<!-- base stylesheet -->
<link rel="stylesheet" href="css/main.css" type="text/css"/>
<!-- SP stylesheet -->
<link rel="stylesheet" href="css/sp.css" type="text/css" media="only screen and (max-device-width:480px)"/>
</head>
<body>
<header>
<a name="top"></a>
<h1>HTML Structure</h1>
</header>
<nav>
<ul>
<li>section1</li>
<li>section2</li>
<li>section3</li>
</ul>
</nav>
<div id="content">
<div>
<footer>
<ul>
<li>copyright</li>
<li>sitemap</li>
<li>contact</li>
<li><a href="#top">go to top</a></li>
</ul>
</footer>
</script>
</body>
</html>