-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
51 lines (46 loc) · 1.46 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
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
<header>
<h1>About Me</h1>
</header>
<section>
<img src="profile.jpg" alt="A picture of me" width="200">
<h2>Hello, my name is Calen Sturtevant!</h2>
<p>I'm a Software Development student, my interests include: gaming, fron-end development, and website building.</p>
<p>I enjoy working on group projects, gaining new skills, and connecting with others who share similar interests or can teach me something new.</p>
</section>
<section>
<h3>My Skills</h3>
<ul>
<li>HTML & CSS</li>
<li>JavaScript</li>
<li>Problem-solving</li>
<li>Team Project Work</li>
<li>JIRA/GitHub</li>
</ul>
</section>
<section>
<h3>My Contact Info</h3>
<p>Email: <a href="[email protected]">[email protected]</a></p>
<p>LinkedIn: <a href="https://linkedin.com/in/calens" target="_blank">Here</a></p>
</section>
<footer>
<p>© 2024 Calen Sturtevant</p>
</footer>
</body>
</html>
</body>
</html>