-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 1.71 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html style='height:100%;' lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src='jquery-3.4.1.min.js'></script>
<script src='script.js'></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel='stylesheet' href='style.css'/>
<title>Random Advice</title>
</head>
<body style='height:100%;'>
<div style='height:90%;'>
<div style='background-color: rgb(224, 173, 97);color:white;' class="w-auto text-center">
<h2>Random Advice</h2>
<h4>by Panagiotis Anthoulis</h4>
</div>
<button class="butt" onclick='gen()'>I NEED ADVICE</button>
<div style="max-width:95%;" id="advice_div">
<span id='your'>Your advice is:</span>
<br>
<span id="advice"></span>
</div>
</div>
<div style='height:10%; background-color: rgb(224, 173, 97);color:white;'>
<div class='pt-2 w-50 mx-auto d-flex justify-content-between'>
<img onclick='window.location="https://github.com/PanagiotisAnthoulis"' onmouseout="this.style.filter='invert(100%)'" onmouseover="this.style.filter='invert(0%)'" style="filter:invert(100%);" src='GitHub-Mark-64px.png'>
<img onclick='window.location="https://www.youtube.com/channel/UCs2Z9-3vb7JnZYnMBtdFFXw?view_as=subscriber"' onmouseout="this.style.filter='invert(100%)'" onmouseover="this.style.filter='invert(0%)'" style="filter:invert(100%); width:64px;" src='youtube_icon.png'>
</div>
</div>
</body>
</html>