-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPadding.html
More file actions
53 lines (46 loc) · 2.44 KB
/
Padding.html
File metadata and controls
53 lines (46 loc) · 2.44 KB
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
52
53
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: aliceblue;
}
h1 {
color: maroon;
text-align: center;
}
p {
color: black;
font-style: italic;
font-size: 20px;
}
div {
background-color: aquamarine;
color: blue;
font-family: Verdana;
}
</style>
<title> padding </title>
</head>
<body>
<main>
<h1> Introduction</h1>
<p> The emergence and growth of blogs in the late 1990s coincided with the advent of web publishing tools that
facilitated the posting of content by non-technical users who did not have much experience with HTML or
computer programming. Previously, a knowledge of such technologies as HTML and File Transfer Protocol had
been required to publish content on the Web, and early Web users therefore tended to be hackers and computer
enthusiasts. In the 2010s, the majority are interactive Web 2.0 websites, allowing visitors to leave online
comments, and it is this interactivity that distinguishes them from other static websites.[2] In that sense,
blogging can be seen as a form of social networking service. Indeed, bloggers not only produce content to
post on their blogs but also often build social relations </p> </main>
<div>The emergence and growth of blogs in the late 1990s coincided with the advent of web publishing tools that
facilitated the posting of content by non-technical users who did not have much experience with HTML or
computer programming. Previously, a knowledge of such technologies as HTML and File Transfer Protocol had
been required to publish content on the Web, and early Web users therefore tended to be hackers and computer
enthusiasts. In the 2010s, the majority are interactive Web 2.0 websites, allowing visitors to leave online
comments, and it is this interactivity that distinguishes them from other static websites.[2] In that sense,
blogging can be seen as a form of social networking service. Indeed, bloggers not only produce content to
post on their blogs but also often build social relations with their readers and other bloggers.[3] However,
there are high-readership blogs which do not allow comments.</div>
</body>
</html>