-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDripCBsample.html
60 lines (52 loc) · 1.97 KB
/
DripCBsample.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>HOME</title>
<style type="text/css">
a.pages {
color: #422100;
font-weight: bold;
text-decoration: none;
}
li {
display: inline;
color: #422100;
font-weight: bold;
list-style-type: none;
}
span {
color: red;
font-weight: bold;
}
.navpages {
color: #422100;
font-weight: bold;
display: inline;
text-align: center;
}
<!-- NAV Class above isn't working within the code, not sure why??? -->
</style>
</head>
<body>
<nav style="text-align: center";>
<a class="navpages" href="#">Home</a>    
<a class="navpages" href="#">About Us</a>    
<a class="navpages" href="#">Menu</a>    
<a class="navpages" href="#">Events</a>    
<a class="navpages" href="#">News</a>    
<a class="navpages" href="#">Contact</a>
</nav>
<hr>
<!-- Create class for FOOTER and jazz up with CSS. CSS should include colors, text-align, etc. -->
<footer>
<ul style="text-align: center;">
<li><a class="pages" href="home.html">Home</a>   |   </li>
<li><a class="pages" href="aboutus.html">About Us</a>   |   </li>
<li><a class="pages" href="menu.html">Menu</a>   |   </li>
<li><a class="pages" href="events.html">Events</a>   |   </li>
<li><a class="pages" href="news.html">News</a>   |   </li>
<li><a class="pages" href="contact.html">Contact</a></li>
</ul>
<p style="text-align: center; color: #422100;">Drip Coffee Bar is dedicated to the enjoyment of coffee, a fun environment, <br> & establishing an outlet for creative people and those who appreciate creativity</p>
<p style="text-align: center; color: #422100; font-weight: bold;">Drip Coffee Bar©2014.All Rights Reserved</p>
</footer>