-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (63 loc) · 2.63 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<!--META-->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--FONTS-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
<!--CSS LOCAL-->
<link rel="stylesheet" href="style.css">
<title>Frosted Glass Design</title>
</head>
<body>
<div class="main-card-glass">
<h2> Welcome to Frosted Glass Design !</h2>
<hr>
<div class="container">
<h1 class="title">Hello World !</h1>
<br>
<aside>
<p>Insert E-Mail : </p>
<input type="email" name="email" id="#" placeholder=" Insert your E-Mail">
<br>
<p>Insert Password : </p>
<input type="password" name="pass" id="#" placeholder=" Insert your Password">
<br> <br>
<a class="btn-login" href="#" target="_blank">Login</a>
</aside>
</div>
</div>
<br>
<br>
<div class="footer">
Copyright © Arifian Saputra, 2021. All Rights Reserved.
<br>
<div class="container-footer">
<a href="https://www.facebook.com/arifian.syaputra.9" target="_blank"><img class="img-footer" src="024-facebook.png" alt=""></a>
<a href="https://www.instagram.com/arifiansaputra_" target="_blank"><img class="img-footer" src="044-instagram.png" alt=""></a>
<a href="https://twitter.com/@ArifianSaputra1" target="_blank"><img class="img-footer" src="096-twitter.png" alt=""></a>
<a href="https://www.linkedin.com/in/arifian-saputra-08135a178/" target="_blank"><img class="img-footer" src="052-linkedin.png" alt=""></a>
<a href="https://github.com/arifian853" target="_blank"><img class="img-footer" src="032-github.png" alt=""></a>
<br>
</div>
</div>
<br>
<p align="center" id="myBtn">About</p>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<p>Made with : </p>
<img class="img-about" src="icons8-html-5-480.png" alt="">
<img class="img-about" src="icons8-css3-480.png" alt="">
<img class="img-about" src="icons8-javascript-480.png" alt="">
<br>
Thanks for coming !
</div>
</div>
</body>
</html>
<script src="script.js"></script>