-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (29 loc) · 999 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
27
28
29
30
31
32
33
34
<!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>Wikipedia</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="main-container">
<img src="logo.png" alt="" class="main-logo">
<form>
<input type="text" name="" id="" class="main-search">
<button type="submit" class="main-btn">search here</button>
</form>
<img src="gear.gif" width="50" alt="" class="wait-icon">
<ul class="results">
<!-- <li class="search-item">
<h2 class="search-item__title">title</h2>
<p class="search-item__text">Lorem ipsum dolor sit amet consectetur adipisicing elit. Expedita necessitatibus deserunt blanditiis possimus totam laudantium
quasi ab veritatis provident nisi!</p>
<a href="#" class="search-item__link">read more ...</a>
</li> -->
</ul>
</div>
<script src="script.js"></script>
</body>
</html>