-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.html
35 lines (35 loc) · 1.63 KB
/
page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>vocabr.io</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.css">
<link rel="stylesheet" href="stylesheets/page.css">
</head>
<body>
<!--LOGO-->
<div class="logo-box">
<a href="index.html"><img class="logo" src="images/main.svg" alt="logo"></a>
</div>
<!--FIRST SEARCH BOX-->
<form class="searchbox-one" action="" data-form="info">
<input class="search-one" type="text" data-input="search-bar" placeholder="Search.. ">
<input class="submit-one" type="submit" data-button="search" value="Search">
</form>
<h2 class="word" data-field="word"></h2>
<div class="suggestion font" data-field="suggestion"><h2>Suggestion: </h2></div>
<div class="tense font" data-field="tense"><h2>Tense: </h2></div>
<div class="definition font" data-field="definition"><h2>Definition: </h2></div>
<div class="examples font" data-field="examples"><h2>Examples: </h2></div>
<div class="synonym font" data-field="synonym"><h2>Synonym: </h2></div>
<div class="antonym font" data-field="antonym"></div>
<!--jQuery SCRIPT-->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<!--LINK TO MAIN.JS-->
<script src="scripts/main.js"></script>
<!--LINK TO INPUT.JS-->
<script src="scripts/input.js"></script>
</body>
</html>