-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoogle.html
More file actions
124 lines (60 loc) · 2.34 KB
/
google.html
File metadata and controls
124 lines (60 loc) · 2.34 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Google</title>
<link href="./index.png" rel="shortcut icon" radius="50%">
<link href="./googlestyle.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<div class="image1">
<img src="./tralog.png" alt="logo" title="Google" />
</div>
<div class="searchbar">
<input type="text" placeholder="search..">
<button type="button" onclick="alert('OOPS!This is not working')">Search</button>
</div>
<br>
<br>
<div class="list">
<div class="all">
<p><a href="#">All</a></p>
</div>
<div class="news">
<p><a href="#">News</a></p>
</div>
<div class="images">
<p><a href="#">Images</a></p>
</div>
</div>
</header>
<div class="main">
<div class="left">
<p></p>
</div>
<div class="right">
<div class="content">
<p class="link">
<a href="https://en.wikipedia.org/wiki/Man"target="_blank">Man-Wikipedia</a><br>
<a class="glink" href="https://en.wikipedia.org/wiki/Man" target="_blank">https://en.wikipedia.org/wiki/Man</a><p>
<p class="para">A <strong>man</strong> is a male human.The term <strong>man</strong> is usually reserved for an
adult male,with the term boy being the usual term for a male child or adolescent. However, the term <strong>man</strong> is also sometimes used to identify a male human,regardless of age,as in phrases such as "men's basketball".like most other male mammals, a man's...</p>
<div class="woman">
<p class="link">
<a href="https://en.wikipedia.org/wiki/Man" target="_blank">Woman-Wikipedia</a><br>
<a class="glink" href="https://en.wikipedia.org/wiki/Woman"target="_blank">https://en.wikipedia.org/wiki/Woman</a></p>
<p class="para">A <strong>woman</strong> is a female human being. The term <strong>woman</strong> is usually reserved for an adult, with the term girl being the usual term for a female child or adolescent. The term <strong>woman</strong> is also sometimes used to identify a female human, regardless of age, as in phrases such as "women's rights". Women with typical genetic ...</p>
</div>
</div>
<div class="iframe1">
<iframe src="https://en.wikipedia.org/wiki/Man">
</iframe>
<div class="iframe2">
<iframe src="https://en.wikipedia.org/wiki/Woman">
</iframe>
</div>
</div>
</div>
</body>
</html>