-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
70 lines (54 loc) · 2.68 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
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css" />
<title>Search</title>
</head>
<body>
<div class="header">
<div class="header-links">
<a href="images.html">Google Images</a>
<a href="advanced.html">Google Advanced Search</a>
</div>
</div>
<div class="search-container">
<img style="height: 92px;"
src="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png"
alt="Google logo" />
<br>
<!-- HTML Form Action: POST and GET
GET method - used to request data from a specified resource.
POST method - used to send data to a server to update a resource. -->
<form action="https://www.google.com/search" method="get">
<div class="search-field">
<svg class="svg" viewBox="0 0 20 20" width="21" height="20" xmlns="http://www.w3.org/2000/svg">
<g fill="none" fill-rule="evenodd" stroke="#808080" stroke-linecap="round" stroke-linejoin="round">
<circle cx="8.5" cy="8.5" r="5" />
<path d="m17.571 17.5-5.571-5.5" />
</g>
</svg>
<input type="text" name="q">
<svg class="svg" viewBox="0 0 20 20" width="21" height="20" xmlns="http://www.w3.org/2000/svg">
<path fill="#4285f4"
d="m12 15c1.66 0 3-1.31 3-2.97v-7.02c0-1.66-1.34-3.01-3-3.01s-3 1.34-3 3.01v7.02c0 1.66 1.34 2.97 3 2.97z">
</path>
<path fill="#34a853" d="m11 18.08h2v3.92h-2z"></path>
<path fill="#fbbc05"
d="m7.05 16.87c-1.27-1.33-2.05-2.83-2.05-4.87h2c0 1.45 0.56 2.42 1.47 3.38v0.32l-1.15 1.18z">
</path>
<path fill="#ea4335"
d="m12 16.93a4.97 5.25 0 0 1 -3.54 -1.55l-1.41 1.49c1.26 1.34 3.02 2.13 4.95 2.13 3.87 0 6.99-2.92 6.99-7h-1.99c0 2.92-2.24 4.93-5 4.93z">
</path>
</svg>
</div>
</div>
<div class="submit">
<input style="height:43px; width:137px;" type="submit" value="Google Search">
<input style="height:43px; width:137px;" type="submit" name="btnI" value="I'm Feeling Lucky">
</div>
</form>
</body>
</html>
<!-- SVG is a markup language used for describing two-dimensional vector graphics, and it is often used for creating graphics, icons, and illustrations that can be scaled without loss of quality. -->