-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (40 loc) · 1.89 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<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-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<script src="./app.js"></script>
<title>News App</title>
</head>
<body>
<nav class="navbar navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="./images/icon.png" alt="" width="30" height="24" class="d-inline-block align-text-top">
News Home
</a>
</div>
</nav>
<div class="container mt-5">
<div class="container-fluid">
<form class="d-flex">
<input id="searchTxt" class="form-control me-2" type="search" placeholder="Search Your Topic Here..."
aria-label="Search">
<input type="button" value="Search" class="btn btn-success" onclick='searchText()'>
</form>
<p class="form-text">Get updated data here with in just few clicks, search your query and get relevant news.
</p>
</div>
<h2 class="mt-5">Top Headlines</h2>
<hr class="mb-5">
<div id="newsSection" class="newsCards"></div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.6.0.js"
integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
</body>
</html>