-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
40 lines (40 loc) · 2.09 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title id="title">About Us</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<meta charset="utf-8"/>
</head>
<body>
<div class="content">
<div class="centered">
<div class="topNav" id="topNav">
<a href="index.html">Home</a>
<span class="navigationSpace"></span>
<a href="news.html">News</a>
<span class="navigationSpace"></span>
<a href="contact.html">Contact</a>
<span class="navigationSpace"></span>
<a class="active" href="#about">About</a>
</div>
<h1>About Me</h1>
<p>This is a test About Us page on my test website!</p>
<div class="article">
<h2>Who am I?</h2>
<p>I am an IT professional with an A.A.S. in Computer Science with a concentration in Networking and Communication Systems. I am currently a Technical Support Representative and head of the IT department at the Knoxville Chamber.</p>
</div>
<div class="separator"></div>
<div class="article">
<h2>What do I like to do?</h2>
<p>I LOVE technology. I constantly play around with different tech, especially new tech. I like to dabble in coding (as you can tell by this AMAZING website.......</p>
</div>
<div class="separator"></div>
<div class="article">
<h2>What can I do?</h2>
<p>I can troubleshoot and fix most hardware and software issues with endpoints (regular computers). I can also troubleshoot and fix software issues on servers (hardware not so much yet). I have experience administering Active Directory, Exchange Email Systems, Ubiquity Wireless Systems, and many other systems.</p>
</div>
</div>
<div id="time" class="footer"></div>
</body>
<script src="js/main.js"></script>
</html>