-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAq1.html
More file actions
33 lines (26 loc) · 1.34 KB
/
Aq1.html
File metadata and controls
33 lines (26 loc) · 1.34 KB
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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learn Semantic HTML</title>
</head>
<body>
<header>
<h2>Importance of Quotes</h2>
<p>
The term <dfn id="semantic-html">Quotes</dfn> refers to give something as an example to support what you are saying
</p>
</header>
<section>
<h2>Famous Quotes</h2>
<blockquote cite="https://www.goodreads.com/author/quotes/6880208.Magnus_Carlsen">
<p>“Self-confidence is very important. If you don’t think you can win, you will take cowardly decisions in the crucial moments, out of sheer respect for your opponent. You see the opportunity but also greater limitations than you should. I have always believed in what I do on the chessboard, even when I had no objective reason to. It is better to overestimate your prospects than underestimate them.”.</p>
<footer>— <cite>Magnus carlsen</cite></footer>
</blockquote>
<p>Second one:
<q cite="https://www.brainyquote.com/quotes/magnus_carlsen_484949">Without the element of enjoyment, it is not worth trying to excel at anything.</q>
</p>
</section>
</body>
</html>