-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (30 loc) · 835 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
<!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>News Search</title>
<link rel="stylesheet" href="/css/style.css" />
</head>
<body>
<header class="header">
<form action="#" class="search-form" id="search-form">
<input type="text" class="search" id="search" />
<button class="btn">Search</button>
</form>
</header>
<main>
<ul class="news" id="news">
<li>
<a href="">
<img src="" />
<h2 class="title">--</h2>
</a>
</li>
</ul>
</main>
<script src="/js/create-element.js"></script>
<script src="/js/main.js"></script>
</body>
</html>