-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>News API</title>
<link rel="stylesheet" href="<%=htmlWebpackPlugin.files.chunks.main.css %>">
</head>
<body>
<header class="header-news">
<h1 class="header-news__headline">News API</h1>
<button class="header-show-news" >Show News ABC News (AU)</button>
</header>
<aside class="all-sources">
<ul class="all-sources__list">
</ul>
</aside>
<main class="main-block">
<section class="filter-sources">
<div class="filter-sources__block-range">
<span class="filter-sources__min-sources">1</span>
<input class="filter-sources__range" type="range" min="1" max="20" step="1" value="5">
<span class="filter-sources__max-sources">20</span>
</div>
<div class="filter-sources__block-value">
<span class="filter-sources__news">News: </span>
<span class="filter-sources__value">5</span>
</div>
</section>
<section class="source-content">
<h2 class="source-content__author"></h2>
<div class="source-content__articles"></div>
</section>
</main>
<script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>
<script src="<%= htmlWebpackPlugin.files.chunks.main.entry %>"></script>
</body>
</html>