-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (40 loc) · 1.41 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
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="title" content="Login Page">
<title>Login Page - by shaikhsaad256@gmail.com</title>
<!-- Links -->
<link rel="stylesheet" href="index.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"
integrity="sha512-7eHRwcbYkK4d9g/6tD/mhkf++eoTHwpNM9woBxtPUBWm67zeAfFC+HrdoE2GanKeocly/VxeLvIqwvCdk7qScg=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- Favicon -->
<link rel="shortcut icon" href="Materials/Image/Favicon.png" type="image/x-icon">
</head>
<body>
<!-- Instruction -->
<div id="Instruction">
Please Use Screen Size ⩽ 480px or Inspect Mode
</div>
<main>
<div id="background"></div>
<div id="container">
<div id="text">
<div id="heading">Welcome</div>
<div id="subHeading">Lorem ipsum dolor sit amet consectetur. Lorem id sit</div>
</div>
<a id="button" href="HTML/login.html">
<span id="content">
<span id="buttonText">Continue</span>
<img src="Materials/Icons/arrow.svg" alt="">
</span>
</a>
</div>
</main>
<!-- JS for GSAP -->
<script src="index.js"></script>
</body>
</html>