-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRound borders.html
More file actions
105 lines (95 loc) · 3.6 KB
/
Round borders.html
File metadata and controls
105 lines (95 loc) · 3.6 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body {
background-color: beige;
}
main{
max-width: 50%;
line-height: 1.5;
text-align: justify;
margin-left: auto;
margin-right: auto;
}
h1,
h2 {
color: darkcyan;
text-align: center;
}
p {
color: maroon;
font-style: italic;
font-size: 20px;
}
p.round2,
p.round1 {
border: 1px solid #d0b414;
border-left-width: 24px;
border-radius: 8px;
padding: 36px;
font-size: small;
background: #ffc40040;
}
p.round2{
background-color: black;
color: white;
border-color: white;
border-width: 24px;
border-radius: 54px;
font-size: 32px;
font-style: normal;
opacity: 0.2;
cursor: pointer;
}
p.round2:hover{
opacity: 1;
}
p.round3 {
border: 5px solid white;
border-radius: 8px;
padding: 5px;
}
</style>
<title> Round Borders</title>
</head>
<body>
<main>
<h1> Introduction</h1>
<p>The term "weblog" was coined by Jorn Barger[9] on December 17, 1997. The short form, "blog", was coined by
Peter
Merholz, who jokingly broke the word weblog into the phrase we blog in the sidebar of his blog Peterme.com
in
April or May 1999.[10][11][12] Shortly thereafter, Evan Williams at Pyra Labs used "blog" as both a noun and
verb ("to blog", meaning "to edit one's weblog or to post to one's weblog") and devised the term "blogger"
in
connection with Pyra Labs' Blogger product, leading to the popularization of the terms.[13]The term "weblog"
was
coined by Jorn Barger[9] on December 17, 1997. The short form, "blog", was coined by Peter Merholz, who
jokingly
broke the word weblog into the phrase we blog in the sidebar of his blog Peterme.com in April or May
1999.[10][11][12] Shortly thereafter, Evan Williams at Pyra Labs used "blog" as both a noun and verb ("to
blog",
meaning "to edit one's weblog or to post to one's weblog") and devised the term "blogger" in connection with
Pyra Labs' Blogger product, leading to the popularization of the terms.[13]</p>
<p class="round1">The term "weblog" was coined by Jorn Barger[9] on December 17, 1997. The short form, "blog",
was
coined by Peter Merholz, who jokingly broke the word weblog into the phrase we blog in the sidebar of his
blog
Peterme.com in April or May 1999.[10][11][12] Shortly thereafter, Evan Williams at Pyra Labs used "blog" as
both
a noun and verb ("to blog", meaning "to edit one's weblog or to post to one's weblog") and devised the term
"blogger" in connection with Pyra Labs' Blogger product, leading to the popularization of the terms.[13]</p>
<p class="round2">The term "weblog" was coined by Jorn Barger[9] on December 17, 1997. The short form, "blog",
was in connection with Pyra Labs' Blogger product, leading to the popularization of the terms.[13]</p>
<p class="round3">The term "weblog" was coined by Jorn Barger[9] on December 17, 1997. The short form, "blog",
was
coined by Peter Merholz, who jokingly broke the word weblog into the phrase we blog in the sidebar of his
blog
Peterme.com in April or May 1999.[10][11][12] Shortly thereafter, Evan Williams at Pyra Labs used "blog" as
both
a noun and verb ("to blog", meaning "to edit one's weblog or to post to one's weblog") and devised the term
"blogger" in connection with Pyra Labs' Blogger product, leading to the popularization of the terms.[13]</p>
</main>
</body>
</html>