Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Quote generator
finshed up my quote generator
  • Loading branch information
Ade0211 committed Jul 27, 2020
commit 2ef14750a7bc177daeea3848fcaeb4cca6fb42bf
10 changes: 9 additions & 1 deletion Week-3/Homework/mandatory/2-quotegenerator/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,24 @@
<html>
<head>
<title>Quote Generator</title>
<script src="quotes.js"></script>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,900;1,300;1,500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="quote-box">
<p class="quote">I can do all things through christ</p>
<p class="author">Paul<span class="citation">Philippians 4:13</span></p>
</div>
<button id="myButton">Get Quotes</button>
</div>
<script src="quotes.js"></script>
<!-- Write your HTML in here -->

</body>
</html>
Loading