-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>11 Random Quote Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>11 Random Quotes</h1>
<div class="container">
<!-- <input type="range" name="range" min="0" max="100" value="0"> -->
<!-- <div class="range_container"> -->
<div id="box"></div>
<!-- </div> -->
<!-- //////////////// -->
<p id="quote">Anger is the ultimate destroyer of your own peace of mind.</p>
<!-- ////////////////////////// -->
<div class="info_container">
<img src="Images/Dalai Lama.jpg" alt="error" id="imag">
<div id="writer_name"><a href="https://en.wikipedia.org/wiki/Dalai_Lama" id="link_writer" target="_blank">-Dalai Lama</a></div>
</div>
</div>
</body>
<script src="index.js"></script>
</html>