-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (62 loc) · 2.41 KB
/
index.html
File metadata and controls
72 lines (62 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animation</title>
<link href="https://fonts.googleapis.com/css2?family=Alegreya+Sans:wght@900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
</head>
<body onload="myLoader()">
<div id="loader">
<div id="loader">
<div class="box" id="box1"></div>
<div class="box" id="box2"></div>
<div class="box" id="box3"></div>
<div class="box" id="box4"></div>
</div>
</div>
<div class="sky">
<img class="cloud1" src="cloud.png" alt="" id="cloud1">
<img class="cloud1" src="cloud.png" alt="" id="cloud2">
<section class="header">
<h1 id="heading1">soumo.p</h1>
</section>
<section>
<h3 id="heading2">a procrastinator</h3>
</section>
<section>
<center>
<div class="facebox" id="frame"><img src="face/1.png" alt="" id="face"></center>
</div>
</section>
</div>
<div class="skills">
<div class="skillbox">
<h1 style="font-family: 'Titillium Web', sans-serif; font-weight: 900;">Skills:</h1>
<ul>
<li class="laziness">LAZINESS</li>
<li class="humor">HUMOR</li>
<li class="java">JAVA</li>
<li class="html">HTML</li>
<li class="css">CSS</li>
<li class="javascript">JAVASCRIPT</li>
<li class="c">C</li>
<li class="python">PYTHON</li>
</ul>
</div>
</div>
<!--Bootstrap CDN link-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<script>
var loader=document.getElementById('loader');
function myLoader(){
loader.style.display= 'none';
}
</script>
</body>
</html>