-
Notifications
You must be signed in to change notification settings - Fork 0
/
01_basic.html
48 lines (44 loc) · 1.31 KB
/
01_basic.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Implementing CSS3</title>
<style>
/* CSS comments */
h2 {
color: green;
}
/*
Prefixes:
-webkit- Google Chrome, Safari, Navegador Android
-moz- Firefox
-o- Opera
-ms- Internet Explorer, Edge
-khtml- Konqueror
*/
/*
.class {
background: linear-gradient(top, #000 0%, #fff 100%);
background: -webkit-linear-gradient(top, #000 0%, #fff 100%);
background: -moz-linear-gradient(top, #000 0%, #fff 100%);
// IE 6 - 9
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff',GradientType=0 );
// IE 10+
background: -ms-linear-gradient(top, #000 0%, #fff 100%);
// Opera 11.10+
background: -o-linear-gradient(top, #000 0%, #fff 100%);
}
*/
</style>
<link rel="stylesheet" href="/css/01_basic.css">
</head>
<body>
<!-- Inline style-->
<h1 style="color: red;">Heading 1</h1>
<!-- Internal style-->
<h2>Heading 2</h2>
<!-- External style-->
<h3>Heading 3</h3>
</body>
</html>