Skip to content

Commit 9ed14ce

Browse files
committed
Create indexwebmastercss.html
1 parent b31b5ca commit 9ed14ce

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Título aqui!</title>
6+
<style type="text/css">
7+
h1{
8+
/*
9+
Comentário!
10+
*/
11+
color: orange;
12+
background: green;
13+
}
14+
h2{
15+
color: blue;
16+
}
17+
a{
18+
text-decoration: none;
19+
}
20+
</style>
21+
</head>
22+
<body>
23+
<h1>Título h1</h1>
24+
<h2>Título h2</h2>
25+
<h3>Título h3</h3>
26+
<h4>Título h4</h4>
27+
<h5>Título h5</h5>
28+
<a href="">Meu link!</a>
29+
</body>
30+
</html>

0 commit comments

Comments
 (0)