-
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
1 parent
37feab0
commit 5835d35
Showing
5 changed files
with
59 additions
and
34 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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,12 +1,42 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" | ||
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous"> | ||
|
||
<link href="https://fonts.googleapis.com/css2?family=Potta+One&family=Yusei+Magic&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="styles.css"> | ||
<title>API Interacts</title> | ||
</head> | ||
|
||
<body> | ||
<button class="button">Random Word</button> | ||
<h1 class="display-2 text-center" style="font-family: Yusei Magic;">Wordize</h1> | ||
<p class="text-center" style="font-family: Potta One;">Build your vocabulary by learning a new word, everyday!</p> | ||
<hr> | ||
<div class="container text-center"> | ||
<button class="mt-4 btn btn-primary button" style="font-family: Yusei Magic;">Get one set of word and it's | ||
definition now!</button> | ||
</div> | ||
<div class="container"> | ||
<hr class="mt-4"> | ||
<div style="margin-top: 6rem;" id="demo"> | ||
</div> | ||
</div> | ||
<footer class="mt-5 text-center"> | ||
<hr style="color: black;"> | ||
|
||
<p className="text-center" style="font-family: Roboto Mono; font-size:10; line-height: 0.5">Copyright ©️ | ||
<script type="text/javascript"> | ||
document.write(new Date().getFullYear()); | ||
</script> Parth Pandya </p> | ||
|
||
<p className="text-center" style="font-family: Roboto Mono; font-size: 10; line-height: 0.5 ">Some rights reserved. | ||
</p> | ||
</footer> | ||
<script type="module" src="app.js"></script> | ||
</body> | ||
|
||
</html> |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
hr{ | ||
margin-left: 5rem; | ||
margin-right: 5rem; | ||
} | ||
|
||
#demo h1{ | ||
font-size: 5rem; | ||
} | ||
|
||
#demo p{ | ||
font-size: 1.2rem; | ||
} | ||
|
||
footer { | ||
position: fixed; | ||
height: 100px; | ||
bottom: 0; | ||
width: 100%; | ||
} |