-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbr.html
More file actions
45 lines (45 loc) · 1.41 KB
/
Copy pathbr.html
File metadata and controls
45 lines (45 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="assets/html5.png" type="image/x-icon">
<title>BR</title>
<style>
/* agrupo por clases para crear estilos */
html{
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
div{
padding-left: 0.5cm;
}
.code-text{
padding-left: 15%;
}
button{
margin: 0% 49%;
}
</style>
</head>
<body>
<div>
<a href="index.html">BACK</a>
<h1 style="text-align: center;">BR ELEMENT</h1>
</div>
<div>
<h2>BR</h2>
<p>The <br> inserts a single line break.<br>It's useful for poems or addresses.</p>
</div>
<div>
<h3>EXAMPLE</h3>
<pre class="code-text">
<Ms Julia Thomson<strong><br></strong>Stars & Planet Inc<strong><br></strong>76 Camptown Road<strong><br></strong>Chicago, IL 60710&<strong><br></strong>UNITED STATES</p>
</pre>
<p>Ms Julia Thomson<br>Stars & Planet Inc<br>76 Camptown Road<br>Chicago, IL 60710<br>UNITED STATES</p>
</div>
<a href="index.html">
<button>BACK</button>
</a>
</body>
</html>