-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (56 loc) · 2.52 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
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles/index.css">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Alkatra&display=swap" rel="stylesheet">
<link rel="stylesheet" href="fontawesome-free-6.4.2-web\css\all.min.css">
<link rel="icon" href="images/a.png">
<title>Alroy Pereira</title>
</head>
<body>
<header class="header">
<img src="images/a1.png" class="logo"></img>
<input class="menu-btn" type="checkbox" id="menu-btn" />
<label class="menu-icon" for="menu-btn"><span class="nav-icon"></span></label>
<ul class="menu">
<li><a href="about.html"><div class="menu-items">About Me</div></a></li>
<li><a href="resume.html">My Resume</a></li>
<li><a href="Portfolio.html">My Projects</a></li>
<li><a href="contact.html">Contact Me</a></li>
</ul>
</header>
<div class="containerName">
<div class="mainName">
<h1>Alroy Pereira</h1>
<div class="subTitle">
<span class="static-txt">I'm a</span>
<span class="dynamic-txt"></span>
</div>
<div class="wrap-socials">
<div class="social">
<a href="mailto:[email protected]" class="fa-regular fa-envelope social-items"></a>
</div>
<div class="social">
<a href="https://www.linkedin.com/in/alroy-pereira-2b3631248" class="fa-brands fa-linkedin-in social-items"></a>
</div>
<div class="social">
<a href="https://github.com/Alroy05" class="fa-brands fa-github social-items"></a>
</div>
<div class="social">
<a href="https://instagram.com/alroy_pereira" class="fa-brands fa-instagram social-items"></a>
</div>
<div class="social">
<a href="https://twitter.com/AlroyPereira3" class="fa-brands fa-x-twitter"></a>
</div>
</div>
</div>
<script src="scripts/index.js"></script>
</div>
</body>
</html>