-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="styles.css" rel="stylesheet" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<title>Search</title>
</head>
<body>
<div class="nav">
<a class="link" href="image-search.html">Image Search</a>
<a class="link" href="advanced-search.html">Advanced Search</a>
</div>
<div class="wrapper">
<picture>
<source
srcset="images/google-logo-white.png"
media="(prefers-color-scheme: dark)"
/>
<img class="logo" src="images/google-logo-color.png" alt="Google" />
</picture>
</div>
<form action="https://www.google.com/search">
<div class="form wrapper">
<input class="txt" id="q" type="text" name="q" />
<div class="btn">
<input class="submit" type="submit" value="Google Search" />
<input
class="submit"
type="submit"
value="I'm Feeling Lucky"
name="btnI"
/>
</div>
</div>
</form>
</body>
</html>