-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 1021 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="/images/favicon-32x32.png" type="image/x-icon">
<title>Advice Generator App</title>
</head>
<body>
<div class="container">
<div id="adviceid"></div>
<div id="content"></div>
<img src="/images/pattern-divider-desktop.svg" alt="" />
<div class="dice" id="generateButton"><img src="/images/icon-dice.svg" class="dicebtn" alt="icon-dice"></div>
</div>
<footer>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/lamba01" target="_blank">John Oluwafemi</a>.
</div>
</footer>
<script src="/script.js"></script>
</body>
</html>