-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 2.72 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/styleINDEX.css">
<link rel="icon" href="media/icon_tab.png">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@700&display=swap');
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<title>Alessandro Chiodo</title>
</head>
<body>
<div class="container">
<h1 class="title">Hello there!</h1>
<a class="linkPAGE" href="travel.html">
<img class="pic" id="travel" src="media/travel.jpeg">
<p class="subtext" id="pTravel">Travel</p>
</a>
<a class="linkPAGE" href="gaming.html">
<img class="pic" id="gaming" src="media/gaming.jpg">
<p class="subtext" id="pGaming">Gaming</p>
</a>
<a class="linkPAGE" href="story.html">
<img class="pic" id="me" src="media/me.jpeg">
<p class="subtext" id="pMe">About me</p>
</a>
<br><br>
<h2 class="intro">My name is <strong style="color: #ff0000">Alessandro Chiodo </strong>and I'm 24 years old.</p>
<h2 class="intro">I'm a Junior Software Developer based in Italy.</p>
<h2 class="intro" id="h2Images">Get to know me better by clicking on images above.</p>
<h2 class="intro" id="h2Text">Get to know me better by clicking on titles above.</p>
<h2 class="intro">Stay in touch!</p>
<div class="containerSOCIAL">
<a class="linkSOCIAL" href="mailto:[email protected]">
<img class="icon" id="mail" src="media/mail.png">
</a>
<a class="linkSOCIAL" href="https://www.linkedin.com/in/alessandro-chiodo/" target="_blank">
<img class="icon" id="linkedin" src="media/linkedin.png">
</a>
<a class="linkSOCIAL" href="https://www.instagram.com/alessandrochiodo.tar.gz/" target="_blank">
<img class="icon" id="instagram" src="media/instagram.png">
</a>
<a class="linkSOCIAL" href="https://open.spotify.com/user/11154144284?si=023cd3d8d93546de" target="_blank">
<img class="icon" id="spotify" src="media/spotify.png">
</a>
</div>
</div>
</body>
<script>
$('.containerSOCIAL').hover(function(){
$('.icon').toggleClass('icon-selected');
});
</script>
</html>