-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.29 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
<!DOCTYPE html>
<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">
<title>Latest Blog Posts</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="title-contain">
<h1>Blog Post Retriever</h1>
<p>for DEV.to</p>
</div>
<div class="input_contain">
<input type="text" name="username" id="username" placeholder="Enter a username..." autocomplete="off">
<button><i class="fas fa-search"></i></button>
</div>
<div class="contain"></div>
<footer>
<div class="text1" aria-label="contributor">Made with <i class="fas fa-heart"></i> by <a
rel="noreferrer" aria-label="github profile" href="https://github.com/murtuzaalisurti">Murtuza</a></div>
<div class="text2" aria-label="powered by">Powered by Heroku</div>
</footer>
<script src="app.js"></script>
</body>
</html>