-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
178 lines (125 loc) · 4.02 KB
/
index.html
File metadata and controls
178 lines (125 loc) · 4.02 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>premDev!</title>
<script src="dat.gui.min.js"></script>
<link rel="icon" href="./home.svg">
<link rel="stylesheet" href="style.css">
<!-- FontAwsome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css"
integrity="sha512-2SwdPD6INVrV/lHTZbO2nodKhrnDdJK9/kg2XD1r9uGqPo1cUbujc+IYdlYdEErWNu69gVcYgdxlmVmzTWnetw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
* {
user-select: none;
}
html,
body {
/* overflow: hidden; */
background-color: #ffffff;
background: white;
}
html {
scroll-behavior: smooth;
}
canvas {
width: 100%;
height: 100%;
background: transparent;
}
body {
margin: 0;
/* position: fixed; */
width: 100%;
height: 100%;
}
.dg.ac {
display: none;
}
canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
</style>
<script>
window.ga =
window.ga ||
function () {
(ga.q = ga.q || []).push(arguments);
};
ga.l = +new Date();
ga('create', 'UA-105392568-1', 'auto');
ga('send', 'pageview');
</script>
<script src="loader.js"></script>
<script>
// WebGL cannot resume from bfcache — force a real reload when restored
window.addEventListener('pageshow', function (e) {
if (e.persisted) {
window.location.reload();
}
});
</script>
</head>
<body>
<!-- Background Canvas -->
<canvas id="canvas"></canvas>
<div class="board">
<span class="board-close">×</span>
</div>
<!-- ---------------------------- -->
<!-- P Body -->
<div class="ui" id="me">
<div class="head">
<div class="h-one">
<h5>Hey, I'm Prem 👋</h5>
</div>
<div class="h-two">
<h1>Aspiring Programmer</h1>
</div>
</div>
<div class="image">
<img src="my.png">
</div>
<div class="quote">
<button class="liquid-btn">
<code>Sacrifice your pleasure leads to success</code>
<svg class="shine" viewBox="0 0 100 100" preserveAspectRatio="none">
<defs>
<linearGradient id="glassGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="white" stop-opacity="0.7" />
<stop offset="100%" stop-color="white" stop-opacity="0" />
</linearGradient>
</defs>
<rect width="100%" height="100%" fill="url(#glassGradient)" />
</svg>
</button>
</div>
<div class="task-bar">
<div class="data1 me"><i class="fa-regular fa-face-laugh" style="color: #5541ab;"></i>
<p>Me</p>
</div>
<div class="data2 projects"><i class="fa-solid fa-briefcase" style="color: #5541ab;"></i>
<p>Projects</p>
</div>
<div class="data3 skills"><i class="fa-solid fa-layer-group" style="color: #5541ab;"></i>
<p>Skills</p>
</div>
<div class="data4 contact">
<i class="fa-regular fa-circle-user" style="color: #5541ab;"></i>
<p>Contact</p>
</div>
</div>
</div>
<script src="click.js"> </script>
<!-- Canvas Script 2 -->
<script src="script.js"></script>
<!-- ----------- -->
</body>
</html>