-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage2.html
106 lines (95 loc) · 4.05 KB
/
page2.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html>
<head>
<title>Xelestic</title>
<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=Protest+Strike&display=swap" rel="stylesheet">
<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=Protest+Riot&display=swap" rel="stylesheet">
<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=Kanit:ital,wght@1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style2.css">
<link rel="stylesheet" href="sidebarv2.css">
<style>
body, html {
height: 100%;
}
</style>
</head>
<body>
<nav id="mySidenav" class="sidebar">
<!--top div is sidebar entire, rest below are for icons-->
<div class="sidebar-link">
<a href="index.html"><img src="Icons/blackcrown.gif"></a>
<div>Developer</div>
</div>
<div class="sidebar-link">
<a href="page2.html"><img src="Icons/resume.svg"></a>
<div>Portfolio</div>
</div>
<div class="sidebar-link">
<a href="page3.html"><img src="Icons/like.gif"></a>
<div>Socials</div>
</div>
<!--bottom div is for ending of entire sidebar, div on top is for sidebar icons-->
</nav>
<div id="main">
<span style="cursor:pointer">
<div class="container" onclick="myFunction(this)">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
</span>
</div>
<audio autoplay id="bgAudio" src="audio/Gunna - bread & butter (Instrumental).mp3">
<source src="audio/searchnrescue.mp3" type="audio/mpeg">
</audio>
<div class="image"></div>
<section class="profilesection">
<div class="profile-grid">
<div class="section-picture">
<img class="profile-picture" src="background6/profilepicture2.gif">
<p class="profile-name">Xelestic</p>
<div class="verification-box"><image class="verification" src="background6/verification.gif"></image></div>
<p class="profile-title">(Web Developer)</p>
</div>
</div>
</section>
<section class="buttons">
<div class="button-box">
<div class="devy-buttonbox">
<a class="devy-button" href="http://zolodevy.site/" target="_blank">
Project Devy <div class="devy-pic"><img src="Icons/crown.gif"></div>
</a>
</div>
<div class="nico-buttonbox">
<a class="nico-button" href="https://allegedcheater.lol/" target="_blank">
Project Nico <div class="nico-pic"><img src="Icons/crown.gif"></div>
</a>
</div>
<div class="jay-buttonbox">
<a class="jay-button" href="http://massacre.lol/" target="_blank">
Project Jays <div class="jay-pic"><img src="Icons/crown.gif"></div>
</a>
</div>
<div class="jay-buttonbox">
<a class="jay-button" href="https://samaryis.lol/" target="_blank">
Project Sleepy <div class="jay-pic"><img src="Icons/crown.gif"></div>
</a>
</div>
</div>
</section>
<script>
function myFunction(x) { document.getElementById("mySidenav").classList.toggle("open");
x.classList.toggle("change");
}
var audio = document.getElementById("bgAudio");
audio.volume = 0.04;
var audio = document.getElementById("bgAudio").loop = true;
</script>
</body>
</html>