-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (30 loc) · 1.31 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
<!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 http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<link rel="shortcut icon" href="./assets/images/favicon/download.png" type="image/x-icon">
<title>Document</title>
<link rel="stylesheet" href="./css/index.css" />
</head>
<body>
<div id="spinner" class="overlay">
<div class="loader"></div>
</div>
<div class="verdana center" id="container" style="display:none;">
<div class="blackbg colorwhite t-center verdana"> Jokes.com </div>
<div class="top-15">
<p id="rederr"></p>
<input id='fname' type="text" class="w-249 h-27px b00-black" placeholder="write a name here if you want it to be included in the joke">
<button id='btn' class="btn">Submit</button>
<select class="h-27px" id="gender"><option value="boy">Gender:Male</option><option value="girl">Gender:Female</option></select>
<h1 class="verdana">Joke :</h1>
<p id="joke"></p>
<button id='anotherjoke' class="btn">See another Joke</button>
<div>
</div>
<script src="./js/index.js"></script>
</body>
</html>