-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
62 lines (58 loc) · 2.34 KB
/
test.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>仿站练习</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="static/css/style.css">
</head>
<body>
<nav>
<div class="container px-3">
<a href="#" class="navbar-brand">
<img src="static\img\logo2.png" alt="" height="36">
</a>
<div class="navbar-collapse w-100">
<ul class="navbar-nav">
<li class="nav-item">
<a href="#" class="nav-link">
<span>Category</span>
</a>
</li>
</ul>
<ul class="navbar-nav navbar-nav-scroll">
<li class="nav-item">
<a href="#" class="nav-link">
<span>Category2</span>
</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<span>Category2</span>
</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<span>Category2</span>
</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<span>Category2</span>
</a>
</li>
</ul>
<form class="position-relative search-form">
<input class="form-control pe-5 bg-transparent" type="search" placeholder="Search" aria-label="Search">
<button class="btn bg-transparent px-2 py-0 position-absolute top-50 end-0 translate-middle-y" type="submit"><i class="fas fa-search fs-6 "></i></button>
</form>
</div>
<div class="dropdown">
<a href="#" class="navbar-brand">
<img src="static\img\logo2.png" alt="" height="36">
</a>
</div>
</div>
</nav>
</body>
</html>