-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (33 loc) · 1.23 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
<!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="style.css">
<title>Gloone</title>
</head>
<body>
<header>
<nav class="nav-links">
<a href="images.html">Images</a>
<a href="advanced.html">Advanced</a>
</nav>
</header>
<div class="container">
<div class="child">
<img class="logo" src="Gloone.png" alt="logo" height="92px">
<form action="https://google.com/search">
<input class="input_field" type="text" name="q">
<div class="buttons">
<input class="submit_button" type="submit" value="Gloone Search">
<!-- template >>> http://www.google.com/search?q=stackoverflow&btnI <<<
To submit behave different from defaut, include a name on it
in this case after query paramenter it adds "&btnI"-->
<input class="submit_button" type="submit" name="btnI" value="Pick one!">
</div>
</form>
</div>
</div>
</body>
</html>