-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththreeColumn.html
More file actions
40 lines (38 loc) · 983 Bytes
/
threeColumn.html
File metadata and controls
40 lines (38 loc) · 983 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
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>threeColumn</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<dev id="social">
<a href="https://www.twitter.com/">
<img border="0" alt="Twitter" src="https://pbs.twimg.com/profile_images/666407537084796928/YBGgi9BO.png" width=50" height="50">
</a>
<a href="https://www.facebook.com/">
<img border="0" alt="Face" src="http://www.freelargeimages.com/wp-content/uploads/2014/11/Facebook_logo-7.png" width="50" height="50">
</a>
</dev>
<nav>
<ul>
<li><a href="twoColumn.html">Home</a></li>
<li><a href="threeColumn.html">About</a></li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
</nav>
</header>
<div id="wrapper1">
<div id="id">
<h1>Golden State Warriors</h1>
</div>
<div id="id1">
<h1>Versus</h1>
</div>
<div id="id2">
<h1>Cleveland Cavaliers</h1>
</div>
</div>
</body>
</html>