-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 732 Bytes
/
index.html
File metadata and controls
29 lines (29 loc) · 732 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Wireframe Practice</title>
<link rel = "stylesheet" type = text/css href = "style.css">
</head>
<body>
<header>
<p>header</p>
</header>
<div id = "nav">
<p>nav</p>
</div>
<div id = "section">
<p>section</p>
<div id = "article">
<p>article</p>
<p id = "h1Block">h1, h2, h3</p>
<p id = "pBlock">p</p>
</div>
</div>
<div id = "aside">
<p>aside</p>
</div>
<footer>
<p>footer</p>
</footer>
</body>
</html>