-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
169 lines (137 loc) · 4.22 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head><title>Anokha Tech Fest 2023</title><link rel="icon" href="./images/favicon_io/favicon.ico">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
}
.header {
padding: 80px;
text-align: center;
background: #1abc9c;
color: white;
font-family:'Times New Roman', Times, serif;
background-image: url("./images/anokha_back.png");
background-repeat: no-repeat;
background-size: cover;
}
.header h1 {
font-size: 40px;
font-family:'Times New Roman', Times, serif
}
.navbar {
overflow: hidden;
background-color: #333;
}
.navbar a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
.navbar a.right {
float: right;
}
.navbar a:hover {
background-color: #ddd;
color: black;
}
.row {
display: -ms-flexbox; /* IE10 */
display: flex;
-ms-flex-wrap: wrap; /* IE10 */
flex-wrap: wrap;
}
.side {
-ms-flex: 30%; /* IE10 */
flex: 30%;
background-color: #f1f1f1;
padding: 20px;
}
.main {
-ms-flex: 70%; /* IE10 */
flex: 70%;
background-color: white;
padding: 20px;
}
.fakeimg {
background-color: #aaa;
width: 100%;
padding: 20px;
}
.footer {
padding: 20px;
text-align: center;
background: #ddd;
}
@media screen and (max-width: 700px) {
.row {
flex-direction: column;
}
}
@media screen and (max-width: 400px) {
.navbar a {
float: none;
width: 100%;
}
}
</style>
</head>
<body>
<div class="header">
<br>
<br>
<br>
<br>
<br>
<br>
</div>
<div class="navbar">
<a href="./html/register.html">REGISTRATION</a>
<a href="./html/event.html">EVENTS</a>
</div>
<div class="row">
<div class="side">
<h2>About ANOKHA</h2>
<img src="./images/anokha1.png">
<h5>
Anokha, the national engineering techfest of Amrita School of Engineering, Coimbatore, is a 3-day congregation of some of the brightest minds in India. Founded in 2010, Anokha has grown by leaps and bounds and has progressed to become one of the most popular and top techfests in India. Having successfully completed eight editions, Anokha has had an average annual participation of over 10,000 of the best undergraduate engineering students from top-ranking engineering institutions in India like IITs, BITS, NITs and IIITs participating as well as partner universities in USA and Europe like University of New Mexico, EVRY France and Uppsala University-Sweden.
</h5>
</div>
<div class="main">
<h2>ANOKHA TECH FEST 2023</h2>
<img src="./images/anokha 2.png">
<h5>The School of Engineering, Amrita Vishwa Vidyapeetham, Coimbatore campus, is going to organize the 12th National-level Techfest, Anokha 2023, from February 22-24, 2023.</h5>
<h5>Anokha Techfest, the annual event of Amrita School of Engineering, Coimbatore provides an unique opportunity for students to participate in fun-filled and challenging events and workshop.</h5>
<h5>After the long break of the Pandemic, We are Back for More with More new Events.</h5>
<h5>The event throws open opportunities for students from all disciplines to challenge themselves and foster the <b>“Can Do”</b> attitude.</h5>
<br>
<h2>PAST EVENTS</h2>
<img src="./images/anokha 3.png">
<h5>Spectacular cultural performances by Ragasudha and Natyasudha student clubs.</h5>
</div>
</div>
<div>
<footer class="footer">
<a href="https://www.facebook.com/anokha.amrita/"><i class="fa fa-facebook-official"></i></a>
<a href="https://twitter.com/anokha_techfest?lang=en"><i class="fa fa-twitter"></i></a>
<a href="https://www.instagram.com/anokhatechfest/?hl=en"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/school/anokha-amrita/about/"><i class="fa fa-linkedin"></i></a>
<p class="w3-medium">
<b>All rights reserved @Amrita Vishwa Vidyapeetham</b>
</p>
</footer>
</div>
</body>
</html>