-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (19 loc) · 854 Bytes
/
index.html
File metadata and controls
25 lines (19 loc) · 854 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Website</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="row align-items-center" style="height: 100vh">
<div class="col d-flex flex-wrap justify-content-center">
<a class="btn btn-lg btn-outline-primary mr-3 mb-3" href="./componentes-web/index.html">Componentes Web</a>
<a class="btn btn-lg btn-outline-primary mb-3" href="./problemas-acessibilidade/index.html">Problemas de Acessibilidade</a>
</div>
</div>
</div>
</body>
</html>