-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathbasics.html
More file actions
46 lines (35 loc) · 1.42 KB
/
basics.html
File metadata and controls
46 lines (35 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Building Your Own Style Sheets</title>
<link rel="stylesheet" href="/vendor/stylesheets/normalize.css">
<link rel="stylesheet" href="/assets/stylesheets/global.css">
<link rel="stylesheet" href="/assets/stylesheets/home.css">
<link rel="stylesheet" href="/assets/stylesheets/nav.css">
<link rel="stylesheet" href="/assets/stylesheets/basics.css">
</head>
<body>
<!-- Nav -->
<nav id="main-nav">
<ul class="clearfix">
<li><a href="/">Home</a></li>
<li><a href="/basics.html">Basics</a></li>
<li><a href="/box_model.html">Box Model</a></li>
<li><a href="/positioning.html">Positioning</a></li>
<li><a href="/fonts.html">Fonts</a></li>
<li><a href="/backgrounds.html">Backgrounds</a></li>
<li><a href="/lists.html">Lists</a></li>
<li><a href="/media.html">Media</a></li>
<li><a href="/tables.html">Tables</a></li>
<li><a href="/form.html">Form</a></li>
<li><a href="/post.html">Post</a></li>
</ul>
</nav>
<!-- Example -->
<p id="greeting">Hello! I'll display darkred and white.</p>
<p>I'm going to display darkgreen and white.</p>
<p class="big">I'm going to display darkgreen and white. I'll have a bigger font size too!</p>
</body>
</html>