-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.html
37 lines (37 loc) · 1.03 KB
/
style.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
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>Style Guide</title>
<link rel="stylesheet" type="text/css" href='style.css'>
</head>
<body>
<div id='wrapper'>
<nav>
<ul>
<li><a href='index.html'>Home</a></li>
<li><a href='app.html'>Store Data</a></li>
<li><a href='style.html'>Style Guide</a></li>
<li>Contact Us</li>
</ul></br>
<h1 id="header">Campfire Coffee</h1>
</nav>
<section id='palette'>
<p>Colors</p>
<div id="green">#588C7E</div>
<div id='yellow'>#F2E394</div>
<div id='orange'>#F2AE72</div>
<div id='red'>#D96459</div>
<div id='copper'>#8C4646</div>
</section>
<section id='fonts'>
<p>Typography</p>
<p>Logo:</br>Didot, 80px, #8C4646</p>
<p>Navigation:</br>Arial, 16px, #588C7E</p>
<p>Main:</br>Times, 16px, #000000</p>
<p></p>
<p id='logo'>Images</p>
<img src="img/kettle.jpg" alt="Campfire Coffee">
</section>
</div>
</body>
</html>