-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (76 loc) · 4.63 KB
/
index.html
File metadata and controls
85 lines (76 loc) · 4.63 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
<!DOCTYPE html>
<html lang="en">
<!-- _
███████╗ █████╗ ██╗ ██╗██╗██╗
██╔════╝██╔══██╗██║ ██║██║██║
███████╗███████║███████║██║██║
╚════██║██╔══██║██╔══██║██║██║
███████║██║ ██║██║ ██║██║███████╗
╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝
██╗ ██╗ █████╗ ██████╗ █████╗ ██╗ ██╗
╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗██║ ██║
╚████╔╝ ███████║██║ ██║███████║██║ ██║
╚██╔╝ ██╔══██║██║ ██║██╔══██║╚██╗ ██╔╝
██║ ██║ ██║██████╔╝██║ ██║ ╚████╔╝
╚═╝ ╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝ ╚═══╝ --->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#000">
<meta name="description" content="Sahil Yaduvanshi | QR CODE GENERATOR" />
<meta name="keywords" content="Sahil Yaduvanshi, QR GENERATOR" />
<meta name="author" content="Sahil Yaduvanshi" />
<meta property="og:title" content="" />
<meta property="og:image" content="" />
<meta property="og:url" content="" />
<meta property="og:site_name" content="" />
<meta property="og:description" content="" />
<meta name="twitter:title" content="" />
<meta name="twitter:image" content="" />
<meta name="twitter:url" content="" />
<meta name="twitter:card" content="" />
<title>QR GENERATOR</title>
<link rel="icon" type="image/x-icon" href="src/images/favicon.png">
<!-- aos cdn -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<!-- stylesheet -->
<link rel="stylesheet" href="index.css">
<!-- fontawesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Passions+Conflict&family=Orbitron&family=Fira+Code&family=Orbitron">
<!-- google icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
</head>
<body>
<header></header>
<main>
<div id="preloader">
<div class="loader">
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
</div>
</div>
<div class="logoContainer">
<img src="src/images/logo-for-black.png" alt="">
</div>
<div class="buttonContainer">
<a href="home/home.html"><button>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="none" d="M0 0h24v24H0z"></path><path fill="currentColor" d="M5 13c0-5.088 2.903-9.436 7-11.182C16.097 3.564 19 7.912 19 13c0 .823-.076 1.626-.22 2.403l1.94 1.832a.5.5 0 0 1 .095.603l-2.495 4.575a.5.5 0 0 1-.793.114l-2.234-2.234a1 1 0 0 0-.707-.293H9.414a1 1 0 0 0-.707.293l-2.234 2.234a.5.5 0 0 1-.793-.114l-2.495-4.575a.5.5 0 0 1 .095-.603l1.94-1.832C5.077 14.626 5 13.823 5 13zm1.476 6.696l.817-.817A3 3 0 0 1 9.414 18h5.172a3 3 0 0 1 2.121.879l.817.817.982-1.8-1.1-1.04a2 2 0 0 1-.593-1.82c.124-.664.187-1.345.187-2.036 0-3.87-1.995-7.3-5-8.96C8.995 5.7 7 9.13 7 13c0 .691.063 1.372.187 2.037a2 2 0 0 1-.593 1.82l-1.1 1.039.982 1.8zM12 13a2 2 0 1 1 0-4 2 2 0 0 1 0 4z"></path></svg>
<span>Let's Go!</span>
</button></a>
</div>
</main>
<footer></footer>
</body>
<script>
var loader = document.getElementById("preloader");
window.addEventListener("load", function () {
setTimeout(function() {
loader.style.display = "none";
}, 3000);
})
</script>
</html>