-
Notifications
You must be signed in to change notification settings - Fork 517
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 1000 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 1000 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Wireframe Site</title>
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<nav class="border-red">
<div class="logo border-blue">
<i class="fa fa-lg fa-grav"></i>
</div>
<ul class="border-blue">
<li class="border-green">Link 1</li>
<li class="border-green">Link 2</li>
<li class="border-green">Link 3</li>
</ul>
</nav>
<header class="border-red">I'm a header</header>
<section class="border-red">Section 1</section>
<section class="border-red">Section 2</section>
<footer class="border-red">I'm a footer</footer>
</body>
</html>