-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest.html
More file actions
72 lines (71 loc) · 1.91 KB
/
Copy pathTest.html
File metadata and controls
72 lines (71 loc) · 1.91 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About me - Zach's Website</title>
<link rel="icon" href="favicon.png" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" href="MyStyles.css">
<link rel="stylesheet" href="test.css">
</head>
<body>
<!--Header of DOC-->
<header>
<div class="header">
<h2 class="title">Zach's NASCAR Website</h2>
<div class="navi">
<!--If you modify this, MODIFY ON ALL PAGES-->
<nav class="bar">
<ul class="bar">
<li><a href="index.html">Home</a></li>
<li><a href="results.html">Results</a></li>
<li><a href="pictures.html">Pictures</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<!--End area of MODIFY ON ALL PAGES-->
</div>
</div>
</header>
<!--End Header of DOC-->
<!--Main Content Area-->
<div class="row">
<div class="leftcolumn"><!--LEFT-->
<div class="card">
<h2 class="Results">Welcome to my website</h2>
<h2>Hello my name is Zach Dowding. A little about me,</h2>
<p>As of Recent I have been working on finishing my degree</p>
</div>
</div><!--End Left-->
<!--End Main Content Area-->
<div class="rightcolumn">
<div class="card">
<h2>Zach Dowding</h2>
<div class="imgs" style="height:100px;">Image</div>
<p></p>
<p>Follow me on twitter</p>
</div>
<div class="card">
<h3>Popular Post</h3>
<div class="imgs">Image</div><br>
<div class="imgs">Image</div><br>
<div class="imgs">Image</div>
<div class="imgs">Image</div>
</div>
<div class="card">
<h3>Follow Me</h3>
<p>Some text..</p>
</div>
</div>
</div>
<!--Footer Area of DOC-->
<footer>
<div class="footer">
<h2>Zach Dowding's Website</h2>
</div>
</footer>
<!--End Footer Area of DOC-->
</body>
</html>