-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdropdown.html
More file actions
43 lines (28 loc) · 975 Bytes
/
dropdown.html
File metadata and controls
43 lines (28 loc) · 975 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
43
<!--<style>
nav{justify-content: space-between;display: flex; align-items: center;background-color: rgb(107, 107, 255);padding: 15px;}
ul li {display: inline;float: right;margin: 10px;margin-right: 10px;}
ul li a{color: white;font-size: 0.6cm; text-decoration: none; font-family: arial black;}
.logo{margin: 20px; font-size: 0.8cm; color: white; font-family: arial black;}
ul li a:hover{color: rgb(255, 150, 150);}
</style>
<title>NAV</title>
</head>
<body>
<nav>
<div class="logo">Dayalbagh Edu Institute</div>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Courses</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Sign-in</a></li>
</ul>
</nav>
</body>
-->
<body>
<form action="/data">
<input type="text" name="name">
<input type="number" name="mob">
<input type="submit">
</form>
</body>