-
Notifications
You must be signed in to change notification settings - Fork 0
/
search-result.html
96 lines (91 loc) · 2.73 KB
/
search-result.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Search</title>
<link rel="stylesheet" href="css/search-result.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<script src="js/script.js" defer></script>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/5fdc9b4c36.js"
crossorigin="anonymous"
></script>
</head>
<body>
<header>
<nav>
<a href="#"
><img
src=" https://demo.themefisher.com/godocs-bootstrap/images/logo.png"
alt="Logo"
/></a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Search Page</a></li>
</ul>
<form action="search-result.html">
<input type="text" name="search" placeholder="Search Here..." />
</form>
<a id="first-button" href="#">Changelog</a>
<a id="sec-button" href="#">Contact</a>
</nav>
</header>
<h1>Search result for <span style="color: #ff0043">install</span> </h1>
<div class="container">
<img
src=" https://demo.themefisher.com/godocs-bootstrap/images/no-search-found.png"
alt="no-search-found"
/>
</div>
<footer>
<div class="nav">
<ul>
<li><a href="#">Changelog</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Search</a></li>
</ul>
</div>
<div class="logo-holder">
<a href="#"
><img
src=" https://demo.themefisher.com/godocs-bootstrap/images/logo.png"
alt="Logo"
/></a>
</div>
<div class="social-media-icons">
<div
><a href="#"
><i
class="fa-brands fa-facebook fa-xl"
style="color: #ffffff"
></i></a
></div>
<div>
<a href="#"
><i class="fa-brands fa-x-twitter fa-xl" style="color: #ffffff"></i
></a>
</div>
<div>
<a href="#"
><i class="fa-brands fa-github fa-xl" style="color: #ffffff"></i
></a>
</div>
<div>
<a href="#"
><i class="fa-brands fa-linkedin fa-xl" style="color: #ffffff"></i
></a>
</div>
</div>
</footer>
<hr />
<div class="copyright">
<small>Copyright © 2024 web by tony</small>
</div>
</body>
</html>