40 lines
861 B
HTML
40 lines
861 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>!!!</title>
|
|
<!-- The style.css file allows you to change the look of your web pages.
|
|
If you include the next line in all your web pages, they will all share the same look.
|
|
This makes it easier to make new pages for your site. -->
|
|
<link href="scrollcentral.css" rel="stylesheet" type="text/css" media="all">
|
|
<style>
|
|
|
|
|
|
#quoteDisplay {
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h2></h2>
|
|
<p>random quotes i like, some written by me :)</p> <small>quotes written by me have an * at the end!</small><br><br>
|
|
|
|
<button onClick="newQuote()">quote?</button><br><br>
|
|
<div id="quoteDisplay"> </div>
|
|
<script src="/quotegenerator.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|