-
Notifications
You must be signed in to change notification settings - Fork 0
/
hr_styles.html
38 lines (38 loc) · 915 Bytes
/
hr_styles.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Horizontal lines and styles in HTML</title>
<style>
.hr_line1{
border-top:1px solid blue;
}
.hr_line2{
border-top: 1px dashed red;
}
.hr_line3{
border-top: 1px dotted green;
}
.hr_line4{
border-top: 5px solid green;
}
.hr_line5{
border-top: 15px dotted green;
}
.hr_line6{
border-top: 15px solid blue;
border-radius: 15px;
}
</style>
</head>
<body>
<h1>Horizontal lines and styles in HTML.</h1>
<hr class="hr_line1">
<hr class="hr_line2">
<hr class="hr_line3">
<hr class="hr_line4">
<hr class="hr_line5">
<hr class="hr_line6">
</body>
</html>