-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
71 lines (58 loc) · 1.23 KB
/
menu.html
File metadata and controls
71 lines (58 loc) · 1.23 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title> Menu HTML+CSS</title>
<style>
ul{
list-style: none;
text-decoration-line: 30px;
}
ul li{
float: left;
padding:0px;
margin-top: 3px;
margin-left:35px;
font-size: 18px;
}
ul li a{text-decoration: none;
color: black;
text-align: center;
}
ul li a{
background-color: orange;
padding: 5px;
color: black;
}
input {
width: 300px;
height: 38px;
font-size: 18px;
color: blue;
border-radius: 6px;
top: 198px;
}
label{
width: 200px;
height: 20px;
font-size: 18px;
color: blue;
border-radius: 6px;
}
</style>
</head>
<body bgcolor="">
<div id= "menu">
<form><audio>som</audio>
<label>Escreva aqui!<input type="inicio" id="inicio" name="Nome"/></label>
<input type="submit" value="Pesquisar"/>
</form>
<ul>
<li><a href="inicio.html" target="black">INICIO</a></li>
<li><a href="Contacto.html">CONTACTO</a></li>
<li><a href="cadastro.html">CADASTRO</a></li>
<li><a href="inicio.html">AULAS</a></li>
</ul>
</div>
</body>
</html>