-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlandingpg.html
74 lines (70 loc) · 3.12 KB
/
landingpg.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>College Landing Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div class="container">
<div class="logo-container">
<div class="logo">CHARUSAT</div>
</div>
<ul class="nav-links">
<li><a href="https://charusat.ac.in">Home</a></li>
<li><a href="https://charusat.ac.in/journey_of_charusat.php">About</a></li>
<li><a href="https://charusat.ac.in/academics.php">Academics</a></li>
<li><a href="https://charusat.ac.in/admission/">Admissions</a></li>
<li><a href="https://charusat.ac.in/contact_us.php#1554362403287-74dd29fb-31b6">Contact</a></li>
</ul>
</div>
</nav>
<div class="hero">
<div class="container">
<h1>Welcome to CHARUSAT</h1>
<p>Unlock your potential with our quality education!</p>
<a href="https://admission2023.charusat.ac.in/" class="btn">Apply Now</a>
</div>
</div>
</header>
<section class="about">
<div class="container">
<h2>About Us</h2>
<p>The Iron Man of India, Sardar Vallabhbhai Patel believed, “Education without character is futile”. CHARUSAT proudly follows this spirit. It also follows founding High Moral Values like Honesty, Integrity, Transparency, Fairness, Equity, and Accountability.
CHARUSAT offers various programs, viz., UG, PG, Doctoral, Post-Doctoral, Diploma, Value-added and Executive Development Programs under the tutelage of 9 Institutes, 6 Faculties, and various Centers / Cells. An employee strength of 600, student strength of more than 8000 and a Capital Outlay of INR 150 Crores are the scalar dimensions of CHARUSAT. The programs are offered in the allied disciplines of Technology & Engineering, Pharmacy, Computer Applications, Management Studies, Applied Sciences, Nursing, Physiotherapy, and other Paramedical Sciences.</p>
</div>
</section>
<section class="courses">
<div class="container">
<h2>Our Programs</h2>
<div class="course-card">
<img src="ce.jpg" alt="Course 1">
<h3>B. Tech in Computer Engineering</h3>
<a href="https://charusat.ac.in/cspit/ce/" class="btn">Learn More</a>
</div>
<div class="course-card">
<img src="biosci.jpg" alt="Course 2">
<h3>Bachelor of Science in Biological Sciences</h3>
<a href="http://charusat.ac.in/pdpias/biological-sciences/" class="btn">Learn More</a>
</div>
<div class="course-card">
<img src="mba.jpg" alt="Course 3">
<h3>Master of Business Administration</h3>
<a href="http://charusat.ac.in/i2im/" class="btn">Learn More</a>
<p></p>
</div>
<div class="button-container">
<a href="https://charusat.ac.in" class="btn">View More</a>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2023 CHARUSAT. All rights reserved.</p>
</div>
</footer>
</body>
</html>