forked from JessicaGilfillan/COMP1002_Winter2026
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (64 loc) · 2.19 KB
/
index.html
File metadata and controls
76 lines (64 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Aiden Etim-Bassey | Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--Header and Navigation Section-->
<header>
<h1>Aiden Etim-Bassey</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<!--About Section-->
<section id="about">
<h2>About Me</h2>
<!--Place Holder Image-->
<img src="profile.jpg" alt="Photo of Aiden Etim-Bassey">
<p>
I am a Computer Programming and Analysis Student currently learning the basics of web dev.
I enjoy solving problems, learning new skills, and improving onn previously weak areas. My goal
is to develop the basics of both front end and back end, so that I can improve on my overall
computing skills
</p>
<h3>Skills</h3>
<ul class="skills-list">
<li>HTML</li>
<li>CSS</li>
<li>Python</li>
<li>Git & GitHub</li>
</ul>
</section>
<!--Projects Section-->
<section id="projects">
<h2>Projects</h2>
<p> You can view my current projects on my GitHub profile:</p>
<a class="button" href="https://github.com/348615336" target="_blank">Visit My GitHub</a>
</section>
<!--Contact Information Section-->
<section id="contact">
<h2>Contact Me</h2>
<form action="#" method="post">
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" required minlength="2">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required minlength="10"></textarea>
<button type="submit">Send Message</button>
</form>
</section>
</main>
<footer>
<p>© 2026 Aiden Etim-Bassey</p>
</footer>
</body>
</html>