-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS.html
More file actions
100 lines (77 loc) · 2.16 KB
/
Copy pathCSS.html
File metadata and controls
100 lines (77 loc) · 2.16 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Primeiro projeto com CSS</title>
<!--coemntario-->
<style>
body {
background-color: black;
}
h1{
background-color: rgb(66, 61, 55);
color: forestgreen;
text-align: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
p{
color: rgb(255, 234, 234);
font-family: cursive;
font-size: 25px;
text-decoration: none;
}
#meulayout {
color: rgb(132, 0, 255);
text-align: center;
font-size: 40px;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.fonte{
color: aquamarine;
background-color: rgb(44, 44, 39);
text-align: center;
font-size: 40px;
font-family: Arial, Helvetica, sans-serif;
}
.conceito{
color: forestgreen;
font-family: Arial, Helvetica, sans-serif;
font-size: 25px;
}
h4.meustesteclasse {
color: brown;
font-size: 50px;
text-align: right;
}
p.mc1 {
color: chocolate;
}
p.mc2{
color: aquamarine;
font-size: 30px;
}
button{
background-color: aquamarine;
-webkit-text-fill-color: blue;
text-decoration: none;
border-radius: 60px;
font-family: Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>
<h1>Projeto do CSS</h1>
<h2 id="meulayout">teste</h2>
<p class="fonte">Teste</p>
<h3 class="conceito">Teste usando o conceito de Classe</h3>
<h4 class="meustesteclasse">Meu teste classe</h4>
<p>Olá turma! tudo bem?</p>
<p class="mc1">teste</p>
<p class="mc2">teste 2</p>
<div>
<button>clique aqui</button>
</div>
<input type="file">
</body>
</html>