-
Notifications
You must be signed in to change notification settings - Fork 0
/
DIVClass.html
51 lines (45 loc) · 1.28 KB
/
DIVClass.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
<!doctype html>
<html lang="zh-tw">
<head>
<style>
.theme{
float:left;
color:#003366;
background-color: #99ccff;
height: 180px;
width: 100%;
margin:10px;
padding:20px;
padding-top: 5px;
border:1px solid #003366;
border-color: #99ccff;
}
.theme h2{
color:white;
}
</style>
</head>
<body>
<h1 style="color:#003366">w3schools.com</h1>
<h3 style="color:#aaaaaa">T H E W O R L D ' S L A R G E S T W E B D E V E L O P E R S I T E</h3>
<div class="theme">
<h2>HTML5</h2>
<p>With HTML you can create your own Web site.</p>
<p>This tutorial teaches you everything about HTML.</p>
<p>HTML is easy to learn - You will enjoy it.</p>
</div>
<div class="theme">
<h2>CSS</h2>
<p>CSS is a stylesheet language that describes the presentation of an HTML (or XML) document.</p>
<p>CSS describes how elements must be rendered on screen, on paper, or in other media.</p>
<p>This tutorial will teach you CSS from basic to advanced.</p>
</div>
<div class="theme">
<h2>JavaScript</h2>
<p>JavaScript is the programming language of HTML and the Web.</p>
<p>Programming makes computers do what you want them to do.</p>
<p>JavaScript is easy to learn.</p>
<p>This tutorial will teach you JavaScript from basic to advanced.</p>
</div>
</body>
</html>