-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (54 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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=Josefin+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/cd385a218c.js" crossorigin="anonymous"></script>
<link href="./SCSS/CommonStyleSheet.css" rel="StyleSheet">
<link href="./SCSS/HomePage.css" rel="StyleSheet">
<title>Niko's Home Page</title>
</head>
<body>
<div class="container">
<h2 class="header">Niko Drossos</h2>
<div class="hero">
<div class="line">
<a href="./portfolio.html"><p class="word fancy" data-value="PORTFOLIO">PORTFOLIO</p></a>
</div>
<div class="line">
<a href="./AboutMe.html"><p class="word fancy" data-value="ABOUT ME">ABOUT ME</p></a>
</div>
</div>
</div>
<footer>
<div>
<h3 style="margin-top: 0px;">Contact</h3>
<p>
Phone: 719-726-6022<br>
Email: <a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<div>
<ul id="icons">
<li><a href="https://www.youtube.com/@bethkavod4527"><i class="fa fa-youtube fa-3x"></i></a></li>
<li><a href="https://www.facebook.com/niko.drossos/" target="_blank"><i class="fa fa-facebook fa-3x"></i></a></li>
<li><a href="https://github.com/AvarageCodeEnjoyer"><i class="fa fa-github fa-3x"></i></a></li>
</ul>
<br>
<p>© 2024 Beth Kavod Company. All rights reserved.</p>
</div>
<div>
<ul>
<h3>Made using</h3>
<li><a href="https://fontawesome.com/" target="_blank">Font Awesome</a></li>
<li><a href="https://fonts.google.com/" target="_blank">Google Fonts</a></li>
<li><a href="https://sass-lang.com/" target="_blank">SCSS</a></li>
</ul>
</div>
</footer>
</body>
</html>