html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is hr</h1>
<hr class="h" />
<br>
<hr class="g" align="left" />
<br>
<hr class="j" align="left" />
<br>
<hr class="k" align="left" />
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
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
body {
background: lightgreen;
}
h1{
text-align:center;
color: purple;
text-shadow:4px 4px 8px #888888;
font-style:italic;
border:5px dotted;
border-radius:50%;
}
hr.h{
padding:12px;
background-color: red;
}
.g{
padding:9px;
background-color: black;
width:87%;
}
.j{
padding:6px;
Enter to Rename, Shift+Enter to Preview
js
js
1
2
alert("This is hr😉😉😉");
alert ("Give me an upvote if you like this simple code😂");
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run