-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
36 lines (30 loc) · 1.21 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
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<title>SAT Words API App</title>
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>SAT Words API App</h1>
<div class="card">
<div id='word'>capitulate</div>
<div id='definition'>surrender under agreed conditions</div>
<div class='score-section'>Scrabble Score:<span id="score">14</span></div>
</div>
<button id="randomize">Get New SAT Word</button>
</div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>