-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (49 loc) · 2.07 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title></title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://kit.fontawesome.com/3a73170585.js" crossorigin="anonymous"></script>
<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=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="app.css" />
</head>
<body class="site">
<!--[if lt IE 7]>
<p class="browsehappy">
You are using an <strong>outdated</strong> browser. Please
<a href="#">upgrade your browser</a> to improve your experience.
</p>
<![endif]-->
<header>
<h1 class="title">
<i class="fa-solid fa-lock"></i> <br/> Random Password Generetor
</h1>
</header>
<main class="site-content">
<div class="container">
<input type="text" id="input_password" class="password" placeholder="password" readonly="" />
<button id="button_password" class="button">GENERATE PASSWORD</button>
<button id="dom_button_copy" class="button">COPY <i class="fa-solid fa-copy"></i></button>
</div>
</main>
<footer class="developer">
<a class="developer-link" href="">
<i class="fa-brands fa-github"></i> Github
</a>
<a class="developer-link" href="">
<i class="fa-brands fa-twitter"></i> Twitter
</a>
</footer>
<script src="app.js" async defer></script>
</body>
</html>