-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./src/css/style.css" />
<script defer src="./src/js/script.js"></script>
<link
rel="shortcut icon"
href="./src/images/Unknown_person.jpg"
type="image/x-icon"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.1.1/css/all.css"
integrity="sha384-O8whS3fhG2OnA5Kas0Y9l3cfpmYjapjI0E4theH4iuMD+pLhbf6JI0jIMfYcK3yZ"
crossorigin="anonymous"
/>
<title>Fake User Generator</title>
</head>
<body class="bg-dark-gray">
<main
class="flex flex-col justify-center items-center min-h-screen text-white gap-8 m-2"
>
<div
class="container max-w-lg rounded-md bg-light-gray shadow-[5px_5px_0px_0px_rgb(114,137,218)] relative text-center pt-16 pb-6 p-2"
>
<img
class="absolute w-24 h-24 rounded-md shadow-[5px_5px_0px_0px_rgb(114,137,218)] top-0 left-1/2 -translate-x-1/2 -translate-y-1/2"
id="user-image"
src="./src/images/Unknown_person.jpg"
alt="Anonymous"
/>
<div
class="flex items-center justify-center min-h-72"
id="data-container"
></div>
</div>
<button
class="bg-light-gray p-2 rounded-md shadow-[3px_3px_0px_2px_rgb(114,137,218)] active:shadow-[0px_0px_0px_0px_rgb(114,137,218)] transition-all duration-75 active:translate-y-1"
id="button"
>
Get Random User
</button>
</main>
</body>
</html>