-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (108 loc) · 3.68 KB
/
index.html
File metadata and controls
119 lines (108 loc) · 3.68 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
/>
<link rel="stylesheet" href="./src/style.css" />
<title>Web Dev Basics</title>
</head>
<body>
<header>
<nav class="nav">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home" class="hero">
<h1>Web Dev Basics</h1>
<p>
An 8-week program designed to introduce students to HTML, CSS, and
JavaScript through hands-on projects.
</p>
<a href="#projects" class="btn">Explore Projects</a>
</section>
<section id="projects" class="projects">
<h2>Program Projects</h2>
<p>
Each project represents a key concept learned during the program.
Students build these step by step throughout the weeks.
</p>
<div class="project-grid">
<article class="project-card">
<img src="./html.svg" alt="HTML" />
<h3>Hello Web</h3>
<p>
The first introduction to the web with the traditional Hello Web
</p>
<span class="tech">HTML</span>
<a
href="#"
target="_blank"
class="github-link"
aria-label="View on GitHub"
>
<i class="fa-brands fa-github"></i>
</a>
</article>
</div>
</section>
<section id="about" class="about">
<div class="about-content">
<div class="about-text">
<h2>About the Program</h2>
<p>
This course was designed to help beginners understand how the web
works by building real projects instead of just watching
tutorials.
</p>
<p>
As the designer of this program, my goal is to give students a
clear foundation in web development and prepare them to
confidently build their own capstone projects.
</p>
</div>
<div class="profile-card">
<div class="avatar">
<img src="./profile.jpg" alt="profile image" />
</div>
<h3 class="title">Louis Miguel</h3>
<ul class="contacts">
<li>
<a href="https://github.com/ZLouisMiguel" target="_blank" aria-label="GitHub">
<i class="fa-brands fa-github"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/_lou.123/" target="_blank" aria-label="Instagram">
<i class="fa-brands fa-instagram"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/louis-miguel-7a7596345/" target="_blank" aria-label="LinkedIn">
<i class="fa-brands fa-linkedin"></i>
</a>
</li>
</ul>
</div>
</section>
</main>
<footer id="contact" class="footer">
<p>
Find me on
<a href="https://github.com/ZLouisMiguel" target="_blank">GitHub</a>
</p>
<p>© 2026 Web Dev Basics Program. All rights reserved.</p>
</footer>
<script type="module" src="/src/main.js"></script>
</body>
</html>