forked from makersacademy/news-summary-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (51 loc) · 1.11 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
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html>
<style>
h1, p, * {
font-family: sans-serif;
color: #4B1B2A;
}
html {
background:#fbe3e8
}
body {
background: #ebf6f5;
width: 600px;
margin: auto;
margin-top: 20px;
padding: 20px;
border-radius: 10px;
}
.note {
border-bottom: 1px solid #aaa;
padding: 15px;
}
input[type=text] {
width: 80%;
background: #fefefe;
border-radius: 4px;
padding: 10px 8px;
border: 1px solid #444;
font-size: 20px;
}
button {
background: #ffa8B6;
border-radius: 4px;
padding: 10px 8px;
border: 1px solid #444;
font-size: 18px;
cursor: pointer;
}
</style>
<head>
<title>Daily news</title>
</head>
<body>
<h1>Guardian News</h1>
<input type="text" id="search-term" /></div></br>
<button id="search-news-button">search news</button>
<button id="refresh-news-button">refresh news</button></br>
<div id="main-container"></div>
<script src="bundle.js"></script>
</body>
</html>