Skip to content

Commit

Permalink
clone
Browse files Browse the repository at this point in the history
  • Loading branch information
imnomee committed Jan 8, 2024
1 parent d91a7ac commit 6dc8261
Showing 1 changed file with 32 additions and 23 deletions.
55 changes: 32 additions & 23 deletions index.html
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>

0 comments on commit 6dc8261

Please sign in to comment.