-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 1.83 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
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>Curso de Bootstrap</title>
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Importando Bibliotecas de estilo e o BootsTrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/estilos.css" rel="stylesheet">
</head>
<body>
<!-- Declarando Botão do Menu -->
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle"
type="image"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
id="executarMenu"
src="img/casa.png">Menu</button>
<!-- Vinculando Menu ao SubMenu e criando os itens do SubMenu -->
<div class="dropdown-menu"
aria-labelledby="executarMenu">
<a class="dropdown-item" href="home.html">Home</a>
<a class="dropdown-item" href="info.html">Info</a>
<a class="dropdown-item" href="special-events.html">Special Events</a>
<a class="dropdown-item" href="dvd.html">DVD</a>
<a class="dropdown-item" href="location.htm">Location</a>
<hr>
<a class="dropdown-item" href="menu.html">Menu</a>
<a class="dropdown-item" href="review.html">Review</a>
</div>
</div>
<!-- Importando arquivos .JS -->
<script src="_js/jquery.min.js"></script>
<script src="_js/popper.min.js"></script>
<script src="_js/bootstrap.min.js"></script>
</body>
</html>