forked from Endabelyu/Team-Merah
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.42 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
<!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">
<title>Quiz Game</title>
<link rel="stylesheet" href="CSS/index.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
</head>
<body>
<Main>
<div class="outerbox">
<h1 class="createacc">CREATE ACCOUNT</h1>
<form action="">
<label for="fname">Username:</label><br>
<input type="text" id="username" name="username" placeholder="aku1322" required><br>
<label for="email">Your Favourite Email:</label><br>
<input type="email" id="email" name="email" placeholder="[email protected]" required> <br>
<div class="singlerow">
<input type="password" id="password" name="password" placeholder="password" required>
<input type="password" id="confirmpass" name="confrimpass" placeholder="confirm password" required>
</div>
<input type="submit" value="Create Account">
<p><a href="#" class="already">Already Registered?</a></p>
</form>
</div>
</Main>
</body>
<script src="JS/index.JS"></script>
</html>