-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (59 loc) · 2.13 KB
/
Copy pathindex.html
File metadata and controls
66 lines (59 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Clarence's Portofolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header id="navbar">
<div class="logo">Clarence's Portfolio</div>
<nav>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="home" class="hero">
<div class="hero-content">
<h1>Hi, I'm <span class="highlight">Clarence Felix</span></h1>
<p class="typing-text">I am a Web Developer & Designer.</p>
<a href="#projects" class="btn">View My Work</a>
</div>
</section>
<section id="about">
<h2>About Me</h2>
<p>I am a passionate developer who loves building functional and beautiful websites. I specialize in HTML, CSS, JavaScript, and modern web frameworks.</p>
</section>
<section id="projects" class="bg-light">
<h2>My Projects</h2>
<div class="project-grid">
<div class="card">
<h3>Project One</h3>
<p>A simple e-commerce landing page built with HTML and CSS.</p>
</div>
<div class="card">
<h3>Project Two</h3>
<p>A weather application using a public API and JavaScript.</p>
</div>
<div class="card">
<h3>Project Three</h3>
<p>A personal task management tool built with React.JS.</p>
</div>
</div>
</section>
<section id="contact">
<h2>Let's Connect</h2>
<p>Email: <a href="#">lixclar888@gmail.com</a></p>
<p>GitHub: <a href="https://github.com/RenceLix">github.com/RenceLix</a></p>
</section>
<footer>
<p>© 2026 Clarence Felix. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>