-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 2.09 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
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en-ph">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Personal Portfolio | Home</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
</head>
<body>
<header>
<nav>
<label class="logo">MC KENNEDY GOMEZ</label>
<ul>
<!-- <li><a href="#blog">Blog</a></li> -->
<li><a href="index.html" style="color:whitesmoke;">Home</a></li>
<li><a href="pages/projects.html">Projects</a></li>
<li><a href="pages/aboutme.html">About Me</a></li>
<li><a href="pages/contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<div class="intro">
<div class="banner">
<div class="container">
<h1><span>I am a</span> Web Developer</h1>
<p>Specializations: Back-End Development, Server-Side Programming, Database Management, System Administration, IT Security</p>
<button type="button"><a href="/personal-portfolio-v2/pages/aboutme.html">Learn More</a></button>
</div>
</div>
</div>
</main>
<footer style="margin-top:0px;">
<div class="copy">© 2023 Personal Portfolio</div>
<div class="bottom-links">
<div class="links">
<span>More Info</span>
<a href="../index.html">Home</a>
<a href="/personal-portfolio-v2/pages/projects.html">Projects</a>
<a href="/personal-portfolio-v2/pages/aboutme.html">About Me</a>
<a href="/personal-portfolio-v2/pages/contact.html">Contact</a>
</div>
<div class="links">
<span>Social Links</span>
<a href="https://www.facebook.com"><i class="fab fa-facebook"></i></a>
<a href="https://www.twitter.com"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com"><i class="fab fa-instagram"></i></a>
<a href="https://www.discord.com"><i class="fab fa-discord"></i></a>
</div>
</div>
</footer>
</body>
</html>