-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHero.html
More file actions
105 lines (90 loc) · 4.6 KB
/
Hero.html
File metadata and controls
105 lines (90 loc) · 4.6 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
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
103
104
105
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/swiper-bundle.min.css">
<link rel="stylesheet" href="css/Hero.css">
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<title>Landing page</title>
</head>
<body>
<header>
<div class="nav-bar ">
<a href="" class="logo">acm vitc</a>
<div class="navigation">
<input type="checkbox" id="check">
<label for="check">
<i class="uil uil-apps nav-menu-btn" id="button"></i>
<i class="uil uil-times nav-close-btn" id="cancel"></i>
</label>
<div class="nav-items">
<a href="./index.html"><i class="uil uil-home"></i> Home</a>
<a href="./Teampage.html"><i class="uil uil-compass"></i> Our Team</a>
<a href="./PastEvents.html"><i class="uil uil-info-circle"></i> Events</a>
<a href="./GalleryPage.html"><i class="uil uil-document-layout-left"></i>Gallery</a>
</div>
</div>
</div>
</header>
<section class="home">
<div class="media-icons">
<a href="https://www.facebook.com/profile.php?id=100089029279317" target="_blank"><i class="uil uil-facebook-f"></i></a>
<a href="https://www.instagram.com/acm_vitcc/" target="_blank"><i class="uil uil-instagram"></i></a>
<a href="https://www.linkedin.com/in/acm-vitc-412770260/" target="_blank"><i class="uil uil-linkedin"></i></a>
<a href="https://www.youtube.com/@vitccacmstudentchapter2499/featured" target="_blank"><i class="uil uil-youtube"></i></a>
</div>
<div class="swiper bg-slider">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="images/opening_image.jpg" alt="">
<div class="text-content">
<h2 class="title">ACM <span>VIT Chennai</span></h2>
<p>ACM-VITCC, one of the most reputed and distinguished technical chapter in VIT, Chennai.
We has been working with vision and determination since it’s inception in 2014,
with the aspirations of advancement of computer science as a science and a profession.
</p>
</div>
</div>
<<<<<<< Updated upstream
<div class="swiper-slide dark-layer">
<img src="./images/Tech Jam Wensite.png" alt="">
=======
<div class="swiper-slide dark-layer">
<img src="./assets/img/Brainovision Hackathon (5) (1).png" alt="">
>>>>>>> Stashed changes
<div class="text-content">
<h2 class="title">WebDex<span>Event</span></h2>
<p>Are you looking for a great opportunity to take your skills in the tech world to the next level?<br />
</p>
<button class="read-btn"><a href="./EventsDetails/webdex.html">View Details</a> <i
class="uil uil-arrow-right"></i></button>
</div>
</div>
<!-- <div class="swiper-slide dark-layer">
<img src="assets/img/Envision-horizontal.png" alt="">
<div class="text-content">
<h2 class="title">Envision'23</h2>
<p>Envision 23 is Chennai's flagship startup festival, organized by TechnoVIT, and provides an exceptional venue for emerging entrepreneurs and early-stage firms to showcase their game-changing ideas. This event encourages prospective entrepreneurs in Chennai by giving them a golden opportunity to turn their creative ideas into tangible companies, preventing them from stagnating. This pitch-a-thon allows university students to promote their prospects in an original way.</p>
<button class="read-btn"><a href="./envision-23.html">View Details</a> <i class="uil uil-arrow-right"></i></button>
</div>
</div>
</div>
</div>
<div class="bg-slider-thumbs">
<div class="swiper-wrapper thumbs-container">
<img src="images/opening_image.jpg" class="swiper-slide" alt="">
<<<<<<< Updated upstream
<img src="images/Tech Jam Wensite.png" class="swiper-slide" alt="">
<img src="assets/img/Envision-horizontal.png" class="swiper-slide" alt="">
=======
<img src="assets/img/Brainovision Hackathon (5) (1).png" class="swiper-slide" alt="">
<!-- <img src="assets/img/Envision-horizontal.png" class="swiper-slide" alt=""> -->
>>>>>>> Stashed changes
</div>
</div>
</section>
<script src="js/swiper-bundle.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>