-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JS Quiz</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/login.css">
<link rel="icon" type="image/ico" href="favicon.ico"/>
</head>
<body>
<header><h1>JS Quiz</h1></header>
<div class="quiz-container">
<div class="quizpanel">
<h2 class="ptitle">Welcome to JS Quiz</h2>
</div>
<div class="wcontent">
<form action="quiz.html" id="myform">
<input type="text" class="usr-name" placeholder="enter your name" required >
<input type="submit" class="btn light login" name="login" value="Login">
</form>
</div>
</div>
<script src="javascripts/CookieUtil.js"></script>
<script src="javascripts/EventUtil.js"></script>
<script src="javascripts/login.js"></script>
</body>
</html>