-
Notifications
You must be signed in to change notification settings - Fork 349
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 798 Bytes
/
index.html
File metadata and controls
30 lines (29 loc) · 798 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
29
30
<!DOCTYPE html>
<html>
<head>
<title>4Geeks Academy</title>
<style>
blockquote {
border-left: 2px solid red;
background: #fbfbfb;
padding: 5px;
}
</style>
</head>
<body>
<!-- your code here -->
<h1> This will be your heading</h1>
<p>Then, you start talking about some interesting stuff that nobody wants to read</p>
<p>Then you can quote someone to add credibility:</p>
<blockquote>
A quotation is a handy thing to have about, saving one the trouble of thinking
<br />
-A.A.Milne, If I May
</blockquote>
<p>After all, new generations have these things in common:</p>
<ul>
<li>Don't like to read long texts.</li>
<li>Have the attention span of a bird.</li>
<li>Skip long paragraphs straight to the bullet points.</li>
</body>
</html>