-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
32 lines (31 loc) · 1.14 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My CV Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to My CV Website</h1>
<nav>
<a href="index.php">Home</a> |
<a href="education.php">Education</a> |
<a href="work_experience.php">Work Experience</a> |
<a href="skills.php">Skills</a> |
<a href="projects.php">Projects</a> |
<a href="contact.php">Contact</a>
</nav>
</header>
<section>
<h2>About Me</h2>
<p>This is the homepage of my online CV website. Explore my education, skills, work_experience, projects and contact me through the navigation above.</p>
<section id="PERSONAL-INFO">
<h2>PERSONAL INFO</h2>
<p><strong>Name:</strong> Nkuna dan</p>
<p><strong>Email:</strong> hlayisanidan01@gmail.com</p>
<p><strong>Phone:</strong> 078 602 6763</p>
<p><strong>Bio:</strong> I am first student doing computer science at university of Limpopo</p>
</section>
</body>
</html>