-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path17-Borders.html
More file actions
28 lines (27 loc) · 914 Bytes
/
17-Borders.html
File metadata and controls
28 lines (27 loc) · 914 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
h1{
/* border-style: dashed;
border-width: 2px;
border-color: orchid; */
border: 3px solid palegoldenrod;
border-radius: 20px;
}
p{
border-bottom: 3px solid red;
border-top: 5px ridge coral;
border-left: 2px dotted yellowgreen;
border-right: 2px dashed green;
}
</style>
</head>
<body>
<h1>Hendrick Phan</h1>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Asperiores laboriosam nostrum repellat reiciendis itaque voluptas repudiandae porro! Exercitationem, doloremque tenetur error iusto sit cumque nemo pariatur enim soluta, numquam molestias!</p>
</body>
</html>