-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfonts decoration 2.html
45 lines (44 loc) · 1.03 KB
/
fonts decoration 2.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
<html>
<head>
<title>CSS Document</title>
<style type="text/css">
#p1 {
border: solid #ed06c3;
margin: 20px;
}
#p2 {
border: solid #1107f7;
margin-left: 20px;
margin-top: 20px;
}
#p3 {
border: solid #26a49d;
margin-right: 20px;
margin-top: 50px;
}
#d1 {
border: solid #04fb20;
margin-right: 10px;
}
#d2 {
border: solid #db6408;
margin-left: 10px;
}
</style>
</head>
<body>
<h2>HTML CSS example</h2>
<div id="p1">
<div class="d1">
cascadingstyle sheets,foundly reffered to as css, is a simple design
language intended to simplyfy the process of making web pages
presentable
</div>
</div>
<div id="p2">css hendles the look and feel part of a web page</div>
<div id="p3">
CSS is easy to learn and understand but it provides powerful control over
the presentation of an html document
</div>
</body>
</html>