-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
90 lines (90 loc) · 2.85 KB
/
Copy pathabout.html
File metadata and controls
90 lines (90 loc) · 2.85 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!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="MyStyles_about.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">About Me</h2>
<h3>A little about myself</h3>
<h2>Hello my name is Zach Dowding. A little about me,</h2>
<ul>
<li>I was born in Albuquerque, New Mexico.</li>
<li>I started attending Eastern New Mexico University in 2018. I will graduate in 2022 with a Computer Science degree</li>
<li>I have a advanced understanding of HTML, Java, C#.</li>
<li>I have written programs in Java, C#, C++, C, and HTML</li>
<li>I have been playing the Tuba since 2011.</li>
</ul>
<br>
<h2>I am a big fan of motorsports. Here are some things about me relating to racing</h2>
<ul>
<li>I have been watching NASCAR since 2017.</li>
<li>My favorite NASCAR driver is the #19, Martin Truex Jr.</li>
<li>I have attended two NASCAR races, both at Phoenix Raceway.</li>
<li>In Indycar, my favorite driver is Jimmie Johnson.</li>
<li>In IMSA, my favorite team is the #3 Corvette Racing entry.</li>
<li>In Formula 1, my favorite driver is Kevin Magnussen. (Go Haas F1 Team!)</li>
<li>If Honda CR-V racing existed, I would definently join it.</li>
</ul>
</div>
</div><!--End Left-->
<!--End Main Content Area-->
<div class="rightcolumn">
<div class="card">
<!--I will probably remove this
<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>