-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabelas.html
53 lines (47 loc) · 1.19 KB
/
tabelas.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
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frequências</title>
<style>
.first-class{
background-color: rgb(245, 245, 245);
border-radius: 5px;
margin-bottom: 10px;
color: rgb(19, 20, 20);
}
#first-id{
color: antiquewhite;
font-size: 20px;
background-color: aqua ;
}
div {
padding: 30px;
background-color: rgb(218, 24, 66);
}
.my-button{
background-color: rgb(0, 0, 0);
border-radius: 5px;
margin-bottom: 10px;
color: white;
padding: 5px;
}
</style>
</head>
<body>
<div class="container">
<div class="first-class" style="background-color: rgb(140, 20, 220);">
<p>Hello Friend</p>
</div>
<div class="first-class" id="first-id">
<p>Hello Friend</p>
</div>
<div>
<p>Hello Friend</p>
</div>
<button class="my-button">Hello Friend</button>
</div>
</body>
</html>