forked from 20jasper/interview-question-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 912 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Interview Questions</title>
<link rel="stylesheet" href="/css/normalize.css" />
<link rel="stylesheet" href="/css/style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<main>
<div>
<h1>Full Stack Web Development <br />Interview Questions</h1>
<button id="clickMe" type="button" name="button">
<span class="button_top"> Get random interview question </span>
</button>
</div>
<div>
<section class="hidden">
<h2 id="question"></h2>
<h4 id="questionType"></h4>
<script type="text/javascript" src="js/main.js"></script>
</section>
</div>
</main>
</body>
</html>