-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path22.html
75 lines (73 loc) · 2.89 KB
/
22.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Follow Along Nav (Day-22)</title>
<link rel="stylesheet" href="../assets/css/22.css" />
<script src="../assets/js/22.js"></script>
</head>
<body>
<div class="navbar">
<div class="info">
<div class="info-sign">
<div class="symbol">i</div>
</div>
<span class="description">
<b> <i>Tip</i> </b> : Someone is following MOUSE !!
</span>
</div>
<div class="source">
<a
class="info"
target="_blank"
aria-hidden="true"
title="View on Github"
href="https://github.com/karna98/JavaScript30/#day-22-"
>
<div class="info-sign">
<div class="symbol">
<img src="../assets/images/github.svg" />
</div>
</div>
</a>
</div>
</div>
<div class="content">
<nav>
<ul class="menu">
<li><a href="#">Home</a></li>
<li><a href="#">Order Status</a></li>
<li><a href="#">Tweets</a></li>
<li><a href="#">Read Our History</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
<div class="wrapper">
<p>
This sentence has five words. <a href="#">Here</a> are five
more words. Five-word sentences are fine.
<a href="#">But</a> several together become monotonous.
Listen to what is happening. The writing is getting boring.
</p>
<p>
The <a href="#">sound</a> of it drones. It’s like a stuck
record. The ear demands some variety. Now listen. I vary the
sentence length, and I create music. Music.
</p>
<p>
The writing sings. It has a pleasant rhythm, a lilt, a
harmony. I use short sentences. And <a href="#">I</a> use
sentences of medium length.
</p>
<p>
And sometimes, when I am certain the reader is rested, I
will engage him with a sentence of considerable length, a
sentence that burns with
<a href="#">energy</a> and builds with all the impetus of a
crescendo, the roll of the drums, the crash of the
cymbals–sounds that say listen to this, it is important.
</p>
</div>
</div>
</body>
</html>