-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,37 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<!-- It will refresh page after 3 seconds. Its browsers job to reload it and not JS. | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<!-- It will refresh page after 3 seconds. Its browsers job to reload it and not JS. | ||
<meta http-equiv="refresh" content="3"/> --> | ||
<title>Random Quotes</title> | ||
<link rel="stylesheet" href="css/normalize.css"> | ||
<link rel="stylesheet" href="css/styles.css"> | ||
</head> | ||
<title>Random Quotes - Cloned</title> | ||
<link rel="stylesheet" href="css/normalize.css" /> | ||
<link rel="stylesheet" href="css/styles.css" /> | ||
</head> | ||
|
||
<body id="bodyForColor"> | ||
<header> | ||
<h1>Random Quotes</h1> | ||
<button id="load-quote" class="load-quote">Show another quote</button> | ||
</header> | ||
<body id="bodyForColor"> | ||
<header> | ||
<h1>Random Quotes</h1> | ||
<button id="load-quote" class="load-quote"> | ||
Show another quote | ||
</button> | ||
</header> | ||
|
||
<div class="container"> | ||
<div id="quote-box" class="quote-box"> | ||
<p class="quote">Every great developer you know got there by solving problems they were unqualified to solve until they actually did it.</p> | ||
<p class="source">Patrick McKenzie<span class="citation">Twitter</span><span class="year">2016</span><span class="tag">twitter</span>twitter</p> | ||
</div> | ||
</div> | ||
|
||
<script src="js/script.js"></script> | ||
</body> | ||
</html> | ||
<div class="container"> | ||
<div id="quote-box" class="quote-box"> | ||
<p class="quote"> | ||
Every great developer you know got there by solving problems | ||
they were unqualified to solve until they actually did it. | ||
</p> | ||
<p class="source"> | ||
Patrick McKenzie<span class="citation">Twitter</span | ||
><span class="year">2016</span | ||
><span class="tag">twitter</span>twitter | ||
</p> | ||
</div> | ||
</div> | ||
|
||
<script src="js/script.js"></script> | ||
</body> | ||
</html> |