-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
38 lines (31 loc) · 914 Bytes
/
contact.html
File metadata and controls
38 lines (31 loc) · 914 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
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<title>CSS For Beginners</title>
<link rel="stylesheet" type="text/css" href="css/syntax.css">
</head>
<body>
<div id="header">
<h1>Contact Us</h1>
<h2>Contact The Net Ninja!?!?</h2>
</div>
<h2 id="content-header">Content</h2>
<div id="main-content">
<p>Hello there ninjas! Contact us below.</p>
<p>Aren't paragraph's cool?</p>
</div>
<div>
<p>This is the third div</p>
</div>
<span>Yo, I'm a span tag</span>
<span class="deck halls">Yo, I'm a span tag, too</span>
<span class="deck">This is a deck of spans</span>
<span class="deck">I like span decks</span>
<a href="#">I am a link</a>
<a href="http://www.google.com" title="Google">I am a link</a>
<ul id="id">
<li>List ithems are fun</li>
<li>List ithems are fun</li>
</ul>
</body>
</html>