forked from AditiDiti/HelpingHands2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
box.html
32 lines (24 loc) · 947 Bytes
/
box.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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up Form</title>
<link rel="stylesheet" href="https://codepen.io/gymratpacks/pen/VKzBEp#0">
<link href='https://fonts.googleapis.com/css?family=Nunito:400,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="box.css">
</head>
<body>
<div class="row">
<div class="col-md-12">
<form action="index.html" method="post">
<h1> Course</h1>
<fieldset>
<label for="name">Which course you would like to learn</label>
<input type="text" id="name" name="user_name">
</fieldset>
</form>
<button class="edu" onclick="window.opener.location.href='education.html'; window.close();">Explore</button>
</div>
</div>
</body>
</html>