-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 1.23 KB
/
index.html
File metadata and controls
26 lines (25 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Day 21</title>
<style>
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing:border-box; }
html { -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; }
* { margin: 0; padding: 0; list-style: none; }
body { background: #eee; font-family: Arial, Helvetica, sans-serif; }
.container { margin: 80px auto; max-width: 992px; text-align: center; width: 100%; }
</style>
<link rel="stylesheet" type="text/css" href="./day-21.css">
</head>
<body>
<div class="container">
<a href="#tooltip" role="tooltip" class="link tooltip left" aria-label="lorem ipsum - left">Left</a>
<a href="#tooltip" role="tooltip" class="link tooltip top" aria-label="lorem ipsum - top">Top</a>
<a href="#tooltip" role="tooltip" class="link tooltip bottom" aria-label="lorem ipsum - bottom">Bottom</a>
<a href="#tooltip" role="tooltip" class="link tooltip right" aria-label="lorem ipsum - right">Right</a>
</div>
</body>
</html>