-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (57 loc) · 2.78 KB
/
Copy pathindex.html
File metadata and controls
63 lines (57 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Telwind Project</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="output.css">
</head>
<body>
<!-- navigation -->
<nav class="p-3 flex bg-white justify-between items-center">
<a href="#" id="logo" class="flex gap-2 items-center">
<img class="object-cover max-w-12 max-h-12" src="assets/asset 0.png" alt="logo">
<span class="text-lg font-medium font-display">ToDestop</span>
</a>
<!-- mid-nav -->
<div id="nav-manu" class="hidden md:flex gap-8">
<a href="#" class="font-medium hover:text-primary">All Course</a>
<a href="#" class="font-medium hover:text-primary"> Contact us</a>
<a href="#" class="font-medium hover:text-primary">Upskilling - Job Assistance
</a>
<a href="#" class="font-medium hover:text-primary"> Store (Books)</a>
<a href="#" class="font-medium hover:text-primary">REAL Test</a>
</div>
<!-- left_btn -->
<button class="hidden md:flex justify-center items-center gap-2 border border-gray-400 px-6 py-2 rounded-lg hover:border-gray-900">
<img src="assets/asset 1.svg" alt="tw">
<span>Electronic Developer</span>
<i class="fa-solid fa-arrow-right"></i>
</button>
<button class="p-3 md:hidden" onclick="handleMenu()">
<i class="fa-solid fa-bars"></i>
</button>
<!-- menu-open -->
<div id="nav-dailog" class="fixed z-10 md:hidden bg-white inset-0 p-3">
<div id="nav-bar" class="flex justify-between">
<a href="#" id="logo" class="flex gap-2 items-center">
<img class="object-cover max-w-12 max-h-12" src="assets/asset 0.png" alt="logo">
<span class="text-lg font-medium font-display">ToDestop</span>
</a>
<button class="p-3 md:hidden" onclick="handleMenu()">
<i class="fa-solid fa-xmark"></i>
</button>
</div>
<div class="mt-8">
<a href="#" class="font-medium m-3 p-3 hover:bg-gray-50 rounded-lg block">All Course</a>
<a href="#" class="font-medium m-3 p-3 hover:bg-gray-50 rounded-lg block">Contact us</a>
<a href="#" class="font-medium m-3 p-3 hover:bg-gray-50 rounded-lg block">Upskilling - Job Assistance</a>
<a href="#" class="font-medium m-3 p-3 hover:bg-gray-50 rounded-lg block">Store (Books)</a>
<a href="#" class="font-medium m-3 p-3 hover:bg-gray-50 rounded-lg block">REAL Test</a>
</div>
</div>
</nav>
<script src="script.js"></script>
</body>
</html>