-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
34 lines (30 loc) · 1005 Bytes
/
example.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="index.css"/>
<style>
.list {
border: 1px solid #ccc;
}
</style>
</head>
<body>
<h1>Lists</h1>
<h2>Horizontal</h2>
<ul class="list list--horizontal">
<li class="list__item"><a href="/">Home</a></li>
<li class="list__item"><a href="http://www.google.com/">Google</a></li>
<li class="list__item"><a href="http://www.google.com/">Bing</a></li>
<li class="list__item"><a href="http://www.google.com/">Yahoo</a></li>
</ul>
<h2>Justified</h2>
<ul class="list list--justified">
<li class="list__item"><a href="/">Home</a></li>
<li class="list__item"><a href="http://www.google.com/">Google</a></li>
<li class="list__item"><a href="http://www.google.com/">Bing</a></li>
<li class="list__item"><a href="http://www.google.com/">Yahoo</a></li>
</ul>
</body>
</html>