html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
<head>
<title>Limitless</title>
</head>
<body onclick>
<!-- header 1 -->
<h1>Limitless</h1>
<!-- quote 1 | quote is from an app I used a long time ago -->
<div class="p1">
<p>Don't limit your challenges, challenge your limits.</p>
</div>
</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-color:lightgrey;
}
h1 {
color:blue;
font-size:30px;
border:3px solid red;
padding:10%;
margin:5%;
text-align:center;
background-color:white;
}
.p1 {
color:blue;
font-size:18px;
border:3px solid red;
padding:10%;
margin:5%;
text-align:center;
background-color:white;
}
.p1:hover {
color:red;
border:5px solid blue;
font-weight:bold;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run