-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuotes.html
33 lines (22 loc) · 1.72 KB
/
Quotes.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
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<title>Blockquote & Cite</title>
<meta charset="utf-8">
</head>
<body>
<blockquote>
<p>"One, remember to look up at the stars and not down at your feet. Two, never give up work. Work gives you meaning and purpose and life is empty without it. Three, if you are lucky enough to find love, remember it is there and don't throw it away."</p>
<p>- Stephen Hawking</p>
</blockquote>
<blockquote>
<p>"What really knocks me out is a book that, when you're all done reading it, you wish the author that wrote it was a terrific friend of yours and you could call him up on the phone whenever you felt like it. That doesn't happen much though."</p>
<cite><p>- J.D. Salinger, The Catcher in the Rye</p></cite>
</blockquote>
<blockquote>
<h3>What is HTML?</h3>
<p>Hypertext Markup Language (HTML) is the standard markup language for creating web pages and web applications. With Cascading Style Sheets (CSS) and JavaScript, it forms a triad of cornerstone technologies for the World Wide Web. Web browsers receive HTML documents from a web server or from local storage and render the documents into multimedia web pages. HTML describes the structure of a web page semantically and originally included cues for the appearance of the document. HTML elements are the building blocks of HTML pages. With HTML constructs, images and other objects such as interactive forms may be embedded into the rendered page.</p>
<cite><p><a href="https://en.wikipedia.org/wiki/HTML">Introduction to HTML</a></p></cite>
</blockquote>
</body>
</html>