-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (41 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Background Animation</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<!--
- favicon
-->
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%2210 0 100 100%22><text y=%22.90em%22 font-size=%2290%22>🌟</text></svg>">
</head>
<body>
<div class="preloader">
<img src="preloader.gif" alt="preloader">
</div>
<div class=" ">
<video class="background-video" muted autoplay loop src="background-video.mp4"></video>
<div class="" style="position: absolute; text-align: center;
top: 50%;
left: 50%;
transform: translate(-50%, -50%)">
<h1 style="text-transform: uppercase;">Swamithedev</h1>
<p class="text-white" style="letter-spacing: 3px;font-weight: bold;">Front End Developer</p>
<a href="https://Swamithedev.vercel.app" target="_blank" class="btn btn-outline-light mb-3"> Portfolio <i
class="fa fa-external-link ms-1"></i></a><br>
<button class="btn btn-secondary __pause_btn">
<i class="fa fa-pause" aria-hidden="true"></i>
</button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>