generated from Newton-School/html-css-js-project-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (45 loc) · 1.78 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
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<title>My Dictionary</title>
</head>
<body>
<!-- <nav class="navbar">
<li>home</li>
<li>About</li>
<li>profile</li>
</nav> -->
<main>
<header>
<h1>My Dictionary</h1>
</header>
<section class="first">
<img class="book-img" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTEHR04CiLGD-OWfyKopw9hlyBtiQEFaIYMSA&usqp=CAU" alt="books">
<h2>My DICTIONARY App</h2>
<button class="btn btn-dark btn-lg" id="btn" onclick="historyPage()">History</button>
</section>
<section class="second">
<form id="inputForm">
<label for="user_inputlable">Search for new word</label>
<br>
<div id="inputDiv">
<input type="text" name="search" id="user_input" placeholder="Write new word">
<button class="btn btn-light btn-circle btn-xl" id="searching" >
<img id="search" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTgJ9oZgHZCCYzIcH5mS83DR5TsL2fVwJIPQg&usqp=CAU" alt="search btn">
</button>
</div>
</form>
</section>
<section>
<div id="container">
</div>
</section>
</main>
<script src="App.js"></script>
</body>
</html>