-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (94 loc) · 4.02 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
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<title>Study Hub</title>
<!-- <link rel="icon" href="images/NITWLOGO.png" type="image/png"> -->
<link rel="stylesheet" href="homestyle.css">
</head>
<body>
<section class="header">
<nav>
<!-- <a href="index.html"><img src="images/NITWLOGO.png"></a> -->
<div class="nav-links" id="navLinks">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="feedback.html">FEEDBACK</a></li>
<li><a href="#course">COURSES</a></li>
</ul>
</div>
</nav>
<div class="text-box">
<h1>Study <span>HUB</span></h1>
<p>
Everything You need to Top Your Exams.
</p>
<h3>Scroll for more info</h3>
</div>
<svg class="arrows">
<path stroke-linecap="round" class="a1" d="M0 0 L15 15 L30 0"></path>
<path stroke-linecap="round" class="a2" d="M0 10 L15 25 L30 10"></path>
<path stroke-linecap="round" class="a3" d="M0 20 L15 35 L30 20"></path>
</svg>
</section>
<section class="course" id="course">
<h1>Courses we offer</h1>
<div class="row">
<div class="course-col1">
<h3>BTech</h3>
<div class="dropdown-content">
<a href="btech_cse.html">CSE</a>
<a href="#">EEE</a>
<a href="#">ECE</a>
<a href="#">Civil</a>
<a href="#">Chemical</a>
</div>
</div>
<div class="course-col2">
<h3>MTech</h3>
<div class="dropdown-content">
<a href="#">CSE</a>
<a href="#">EEE</a>
<a href="#">ECE</a>
<a href="#">Civil</a>
<a href="#">Chemical</a>
</div>
</div>
</div>
<div class="row">
<div class="course-col3">
<a ><h3>MCA</h3></a>
</div>
<div class="course-col4">
<a ><h3>MBA</h3></a>
</div>
</div>
</section>
<script src="https://kit.fontawesome.com/4fa2b1e08a.js" crossorigin="anonymous"></script>
</body>
<footer class="foot">
<div class="fdiv">
<span class="fsp"> FOLLOW US </span>
<span class="fsp"> <i class="fa-brands fa-facebook-square"></i></span>
<span class="fsp"> <i class="fa-brands fa-instagram"></i></span>
<span class="fsp"> <i class="fa-brands fa-twitter-square"></i></span>
</div>
<div class="term">
<div class="t"> <span style="margin-left: 2px; font-weight: bold;font-size: 18px; ">Contact Us</span>
<ul class="tul"> <i class="fa-solid fa-location-dot"></i> National Institute of Technology,Warangal</ul>
<ul class="tul"><i class="fa-solid fa-mobile-screen-button"> </i> +91 9872635747</ul>
<ul class="tul"> <i class="fa-solid fa-at"> </i> contact@studyHUB.edu</ul>
<ul class="tul"><i class="fa-solid fa-comments"></i> Feedback</ul>
</div>
<div class="t"> <span style="margin-left: 2px; font-weight: bold;font-size: 18px;">Important Links</span>
<ul class="tul">Terms</ul>
<ul class="tul">Privacy Policy</ul>
<ul class="tul"> Cookie Policy</ul>
<ul class="tul"> About Us</ul>
</div>
</div>
<div class="d">
<span class="xf"> © 2022 StudyHUB.inc</span>
</div>
</footer>
</html>