-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (79 loc) · 3.95 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Campus360</title>
<link rel="stylesheet" href="style.css">
<!-- Title bar Favicon-->
<link rel="shortcut icon" href="./images/favicon.png">
</head>
<body>
<div class="flex-container">
<div class="container">
<header>
<div class="Project-name" style="font-size: 40px; display: flex; align-items: center;">
<img src="./images/logo2.jpg" alt="Project Icon"
style="width: 40px; height: 40px; margin-right: 10px; border-radius: 50%;">
<div class="brand-text brand-big visible text-uppercase"><strong class="text-primary"
style="color:rgb(209, 56, 56)">Campus</strong><strong class="text-primary" style="color: #fafafa;">360</strong>
<div class="brand-note"
style="font-size: 14px; color: #82ed85; font-weight: 300; margin-top: 5px;">
By Campus Dot Crew</div>
</div>
</div>
<nav>
<ul>
<li><a href="#">Home <span></span></a></li>
<!--
================================
Courses List
================================
-->
<li><a href="#">Course's</a>
<ul>
<li><a href="#">C</a></li>
<li><a href="#">C++</a></li>
<li><a href="#">Python</a></li>
<li><a href="#">Java</a></li>
<li><a href="#">HTML</a></li>
<li><a href="#">CSS</a></li>
<li><a href="#">JavaScript</a></li>
<li><a href="#">Laravel</a></li>
<li><a href="#">Artificial Intelligence</a></li>
<li><a href="#">VLSI</a></li>
<li><a href="#">Ruby</a></li>
<li><a href="#">Machine Learning</a></li>
<li><a href="#">**</a></li>
<li><a href="#">**</a></li>
<li><a href="#">*</a></li>
</ul>
</li>
<li><a href="#">Job Preparation <span></span></a></li>
<li><a href="#">About Us<span></span></a>
<ul>
<li><a href="#">About Developer</a></li>
<li><a href="#">About This App</a></li>
</ul>
</li>
<li><a href="#">Help & Contact <span></span></a></li>
<li><a href="#">CV Creator<span></span></a></li>
<li>
<a href="#" class="profile-link">
<img src="./images/logo.jpg" alt="User Profile"
style="width: 40px; height: 40px; border-radius: 50%;">
<span class="profile-name">Profile</span>
</a>
</li>
</ul>
<div class="wave">
<img src="images/layered-waves-haikei.png" alt="">
</div>
</nav>
<!-- <div class="menu-toggle">☰ Menu</div> -->
</header>
</div>
</div>
<!-- <script src="script.js"></script> -->
</body>
</html>