-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfonts decoration.html
More file actions
36 lines (33 loc) · 836 Bytes
/
fonts decoration.html
File metadata and controls
36 lines (33 loc) · 836 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>CSS Document</title>
<style type="text/css">
#p1 {
border: solid #fb1115;
padding: 30px;
}
#p2 {
border: solid #3018db;
padding-bottom: 10px;
padding: 10px;
}
#p3 {
border: solid #0eee3f;
padding-left: 5%;
padding-right: 5%3;
}
</style>
</head>
<body>
<div id="p1">
cascadingstyle sheets,foundly reffered to as css, is a simple design
language intended to simplyfy the process of making web pages presentable
</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>