-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
40 lines (36 loc) · 1.63 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 lang="en">
<head>
<title>Programming Languages :: About</title>
<meta charset="utf-8">
<link rel="stylesheet" href="program.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Programming Languages is the perfect place to start for any aspiring prgrammer. Here you will informative summaries and comparisons of the most popular languages, so that you can find the right one for you!">
</head>
<body>
<div id="wrapper">
<header>
<h1>ProgrammingLanguages.com</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="languages.html">Languages</a></li>
<li><a id="current" href="about.html">About</a></li>
<li><a href="community.html">Community</a></li>
</ul>
</nav>
<main>
<h2>About</h2>
<div>
<img class="fam" src="images/family.png" alt="family.png">
<p>Hi, I'm Craig Spencer, the creator of ProgrammingLanguages.com. I am currently a sophomore at Arizona State University with nearly five years of coding experience. I was lucky to begin my coding career in highschool with a quality teacher, but I know that many people are not fortunate enough to have the same start as me. That is why I decided to create this website. I want everyone to have a place to begin their coding adventures without the fears associated with diving into a new field. So thank you for visiting and supporting my website, and I hope you enjoy your stay!</p>
</div>
</main>
<footer>
Copyright © 2020 ProgrammingLanguages Inc<br>
<a href="mailto:craig@spencer.com">craig@spencer.com</a>
</footer>
</div>
</body>
</html>