-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (77 loc) · 3.03 KB
/
index.html
File metadata and controls
80 lines (77 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en"></html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A personal portfolio showcasing projects, skills, and contact information.">
<title>Niall's Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<button id="menu-icon" aria-label="Toggle navigation menu" tabindex="0">☰</button>
<ul id="nav-menu" class="hidden">
<li><a href="#home" tabindex="0">Home</a></li>
<li><a href="#about-me" tabindex="0">About</a></li>
<li><a href="#projects" tabindex="0">Projects</a></li>
<li><a href="#skills" tabindex="0">Skills</a></li>
<li><a href="#contact" tabindex="0">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home" class="home">
<h1>Welcome to my web page</h1>
</section>
<section id="about-me" class="about-me">
<h2>About Me</h2>
<p>Hello! I am a passionate developer with a keen interest in creating efficient and user-friendly web applications. I enjoy learning new technologies and solving challenging problems.</p>
</section>
<section id="projects" class="projects">
<h2>Projects</h2>
<article>
<h3>Project 1</h3>
<figure>
<img src="IMG_2514.JPG" alt="Project 1 Screenshot" class="lightbox-trigger">
<figcaption>Berkley and Juniper!</figcaption>
</figure>
</article>
<article>
<h3>Project 2</h3>
<figure>
<img src="IMG_2475.JPG" alt="Project 2 Screenshot" class="lightbox-trigger">
<figcaption>Berkley!</figcaption>
</figure>
</article>
</section>
<section id="skills" class="skills">
<h2>Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>React</li>
<li>Node.js</li>
<li>Git</li>
</ul>
</section>
<section id="contact" class="contact">
<h2>Contact</h2>
<form action="#" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
<button type="submit">Send</button>
</form>
</section>
</main>
<footer>
<p>© 2025 Niall's Portfolio</p>
</footer>
<script src="script.js"></script>
</body>
</html></footer>