-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (42 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<title>Portfolio website</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<div class = "menu">
<nav>
<h2 class = "logo">My Portfolio</h2>
<ul>
<li class="current"><a href="#" >Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="skills.html" >Skills</a></li>
</ul>
<!--Old Button-->
<!--<a href="#" class="btn">Place Holder</a>-->
<div class = "btn">
<a href="aboutme.html">about me</a>
</div>
</nav>
</div>
</head>
<body>
<div class="intro">
<span class = "hs1">Hi,</span>
<span class = "hs2"><span class = "wow">Envxsion </span>here!</span>
<span class = "hs3">Welcome to my developer portfolio...</span>
</div>
</div>
</body>
<script src="./js/pointer.js"></script>
<script>
init_point({
pointerColor: "00ffaa",
ringSize: 15,
ringClickSize: 8
})
</script>
</html>