-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.html
More file actions
42 lines (24 loc) · 876 Bytes
/
main.html
File metadata and controls
42 lines (24 loc) · 876 Bytes
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
39
40
41
42
<!DOCTYPE html>
<head>
<link href='https://fonts.googleapis.com/css?family=Alegreya Sans SC' rel='stylesheet'>
<style>
body {
font-family: 'Alegreya Sans SC';font-size: 22px;
}
</style>
<title>Login Form Design</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<button class="button30" role="button">WELCOME TO VEHICLE POOLING</button>
<div class="box2">
<form name="myform" action = "login.php" method = "POST">
<p1>Enter your Destination</p1>
<input type="text" name="Destination" placeholder=" " required="">
<br><br>
</form>
<button class="button-29" role="button">Give a Ride</button>
<button class="button-29" role="button">Want a Ride</button>
</div>
</body>
</html>