-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.html
33 lines (32 loc) · 1.1 KB
/
Home.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="" content="">
<title>home</title>
<link rel="stylesheet" href="./libs/fontawesome/css/all.css">
<link rel="stylesheet" href="home_style.css" type="text/css" media="all" />
</head>
<body>
<div class="block">
<img class="logo" src="img1.png" alt="" />
<img class="img2" src="img2.png" alt="" />
</div>
<div class="input-cnt">
<input type="text" placeholder="Search here..." />
<button type="submit">
<i class="fas fa-search"></i>
</button>
</div>
<button onclick="mybu()" class="switch">switch</button>
<footer>
<marquee direction="right">
© copyright codecubes 2021
</marquee>
</footer>
<script src="https://kit.fontawesome.com/ae5405bc98.js" crossorigin="anonymous"></script>
<script src="home.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>