Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMahe committed Dec 31, 2023
0 parents commit 22e304e
Show file tree
Hide file tree
Showing 6 changed files with 785 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# quote-generator
32 changes: 32 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quote Generator</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css"/>
<link rel="stylesheet" href="style.css">
</head>
<body>

<div class="quote-container" id="quote-container">
<div class="quote-text">
<i class="fas fa-quote-left"></i>
<span id="quote">Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, voluptatum.</span>
</div>
<div class="quote-author">
<span id="author">- Lorem ipsum</span>
</div>
<div class="button-container">
<button class="twitter-button" id="twitter" title="Tweet This!">
<i class="fab fa-twitter"></i>
</button>
<button id="new-quote">New Quote</button>
</div>
</div>

<div class="loader"></div>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>
Loading

0 comments on commit 22e304e

Please sign in to comment.