forked from ceadoor/trace.cea.ac.in
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (75 loc) · 3.65 KB
/
index.html
File metadata and controls
85 lines (75 loc) · 3.65 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
<!DOCTYPE html>
<!--
This file is subject to the terms and conditions defined in
file 'LICENSE', which is part of this source code package.
-->
<html lang="en">
<head>
<title>TRACE CEA</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Poppins|Montserrat|Bree+Serif:400,600,700,800" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.6/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js"></script>
</head>
<body>
<!--CSS Spinner-->
<div class="spinner-wrapper">
<div class="cube1"></div>
<div class="cube2"></div>
</div>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark fixed-top">
<div class="container">
<!-- Brand/logo -->
<a class="logo-enlarge" href="#"><img src="https://raw.githubusercontent.com/ceadoor/tracecea/master/assets/img/logo.png?s=200&v=4" alt="TRACE CEA" style="width:72px" /></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar-res" aria-controls="navbar-res" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbar-res">
<ul class="ml-auto navbar-nav">
<li class="nav-item"><a class="nav-link" href="#home">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#">Gallery</a></li>
<li class="nav-item"><a class="nav-link" href="#">News</a></li>
<li class="nav-item"><a class="nav-link" href="#">Events</a></li>
<li class="nav-item"><a class="nav-link" href="#">Contact</a></li>
</ul>
</div>
</div>
</nav>
<main>
<section id="home">
<div class="content">
<canvas class="scene scene--full" id="waves"></canvas>
<div class="content__inner">
<h2 class="content__title">TRACE</h2>
<h3 class="content__subtitle">COLLEGE OF ENGINEERING ADOOR</h3>
</div>
</div>
</section>
</main>
<!------ ABOUT ------>
<section id="about">
<div class="part">
<h1 class="mast">TRACE</h1>
<h2 class="sub">THE REGAL ASSOCIATION OF COMPUTER ENGINEERS</h2>
<blockquote>The most regal and advanced race of species, who are always ahead of their peers in terms of technology and advancement. Each year TRACE conducts a fest meant for the technocrats of CEA.
The fest is conducted with great pomp and show. TRACE provides a platform at which not just the members of TRACE but the whole CEA gets involved.
TRACE took the initiative to introduce CEA to the world of LINUX, the leading and popularly used OS.
The CEA-LUG(Linux Users Group) was established solely for this purpose. In our future plans, the TRACE has visioned a Wi-Fi campus(wireless internet access to anyone in CEA campus) and an advance EDGE technology, with the computerisation of library and the introduction of various services for students.
</blockquote>
<br />
</div>
</section>
<!-- end about -->
<script src="assets/js/waves.js"></script>
<script>
$(function() {
$('.spinner-wrapper').fadeOut("slow");
});
</script>
</body>
</html>