-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
29 lines (28 loc) · 1.3 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
<!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" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://fonts.googleapis.com/css2?family=Righteous&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,700;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<title>Get Logo</title>
</head>
<body>
<div class="container">
<div class="logo">Get Logo</div>
<form class="js-search-form search-form">
<input
type="text"
class="js-search-input search-input"
placeholder="Enter website url" required
/>
<button class="js-submit-btn submit-btn" type="submit">Search <i class="fas fa-search"></i></button>
</form>
<div class="js-result-container result-container"></div>
</div>
<script type="module" src="index.js"></script>
</body>
</html>