html
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
<!DOCTYPE html>
<!--Spread the word so that everyone can learn from their mistakes-->
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>10 Lessons I learned from making mistakes</h1>
<hr/>
<h2> Don't Think You Know Everything</h2>
<p>
Understand that life is not about impressing others with what you know.It’s about fulfillment, collaboration, and the common good.<br />
If you want to achieve those things, you need to be humble.
</p>
<hr/>
<h2>Never Blame People For Your Unhappiness</h2>
<p>
As a child, you’re taken care of by others. Hence, you assume that someone is responsible for you.<br />
When you grow up, you are responsible for you. So never look at others when you’re unhappy. Instead, accept your unhappiness, and then do something about it.
</p>
<hr/>
<h2>Stop Wasting Time On Losers</h2>
<p>
There’s a big chance the people in your environment don’t strive for the same things as you.Many people live a timid life. People who don’t want anything from life and who spend their time watching tv.<br/>
Don’t give your time to those people.You might become one of them.
</p>
<hr/>
<h2>Don’t Have A Lot Of Time</h2>
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
body {
padding:10px;
border-width:8px;
border-style:groove;
border-color: blue;
background-image:url("https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcSjPWzhJ1WgW9vBXSNHZOBOQ63nVz6PZPbeSg&usqp=CAU");
background-attachment:fixed;
background-repeat:none ;
background-size:cover;
}
h1{
color: red;
}
h2{
color: green;
}
p{
color: indigo;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run