-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (33 loc) · 1.44 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daniel Majil - Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation Bar -->
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contacts.html">Contact</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section class="hero">
<h1>Daniel Majil</h1>
<p>Web Developer | Graphic Designer | Programmer</p>
<a href="#projects" class="cta-button">View My Work</a>
</section>
<!-- About Section -->
<section id="about">
<h2>About Me</h2>
<p>I am a creative and hard-working Information Technology student, anticipating graduation in June 2025. I am actively seeking internships or part-time job opportunities where I can apply my knowledge and gain valuable work experience in the field of information technology. I am particularly interested in positions that will help me develop my skills further and enhance my understanding of IT practices, ultimately enabling me to become a more proficient IT professional.</p>
</section>
<script src="script.js"></script>
</body>
</html>