-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (62 loc) · 1.94 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
58
59
60
61
62
63
64
65
<!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">
<script
src="https://kit.fontawesome.com/1f707df0d7.js"
crossorigin="anonymous"></script>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/icons/favicon.png"
/>
<link rel="stylesheet" href="./assets/css/styles.css">
<title>Fake Product Search JS | Esther White</title>
</head>
<body>
<main>
<div class="header">
<h1>Fake Product Search</h1>
<p>in Vanilla JavaScript by Esther White</p>
</div>
<div class="search">
<input type="text" placeholder="Please enter the number of products...">
<button id="searchBtn">Search</button>
</div>
<div class="container">
</div>
</main>
<div class="footer">
<div class="details">
<p>
created by Esther White<a
class="my-username"
href="https://esthersoftware.dev"
target="_blank"
>EstherSoftwareDev</a
>
</p>
</div>
<div class="social-links">
<a
href="https://www.linkedin.com/in/esthersoftwaredev/"
target="_blank"
><i class="fa-brands fa-linkedin"></i
></a>
<a href="https://github.com/esthersoftwaredev" target="_blank"
><i class="fa-brands fa-github-square"></i
></a>
<a href="https://www.youtube.com/@EstherWhiteDev" target="_blank"
><i class="fa-brands fa-youtube"></i
></a>
<a href="https://twitter.com/estherwhitedev" target="_blank"
><i class="fa-brands fa-twitter-square"></i
></a>
</div>
</div>
<script src="app.js"></script>
</body>
</html>