forked from AtitBimali/web-tech-labs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lab_No_5.html
54 lines (54 loc) · 1.29 KB
/
Lab_No_5.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search Engines</title>
</head>
<body>
<h1>Search Engines</h1>
<ul type="square">
<li>
Google
<a href="https://www.google.com" target="_blank">
<br />
<br />
<img src="/Images/Google_Logo.png" alt="Google Logo" height="80px" />
</a>
</li>
<li>
Bing
<a href="https://www.bing.com" target="_blank">
<br />
<img src="/Images/Bing-logo.png" alt="Bing Logo" height="80px" />
</a>
</li>
<li>
Yahoo
<a href="https://www.yahoo.com" target="_blank">
<br />
<img src="/Images/Yahoo_Logo.png" alt="Yahoo Logo" height="80px" />
</a>
</li>
<li>
DuckDuckGo
<a href="https://www.duckduckgo.com" target="_blank">
<br />
<br />
<img
src="/Images/DuckDuck_logo.svg"
alt="DuckDuckGo Logo"
height="80px"
/>
<br />
</a>
</li>
<li>
Baidu
<a href="https://www.baidu.com" target="_blank">
<br />
<br />
<img src="/Images/Baidu_logo.gif" alt="Baidu Logo" height="80px" />
</a>
</li>
</ul>
</body>
</html>