-
Notifications
You must be signed in to change notification settings - Fork 2
/
esummit.html
88 lines (85 loc) · 4.12 KB
/
esummit.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>EDC JSSATEN | Archive</title>
<meta name="description" content="Entrepreneurship Development Cell of JSS Academy of Technical Education Noida. Accelerating and incubating student start-ups.">
<link rel="icon" href="img/icon.png" sizes="32x32" type="image/png">
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('a').on('click', function(event) {
var hash = this.hash;
$('html, body').animate({scrollTop: $(hash).offset().top}, 900);
});
})
</script>
<link rel="stylesheet" href="css/aos.css">
<style>
.jumbotron{
background: #192440;
}
.team img{
width: 200px;
height: 200px;
border-radius: 5px;
}
</style>
</head>
<body id="top">
<div class="jumbotron jumbotron-fluid">
<div class="container text-center text-md-left">
<header>
<div class="row justify-content-between">
<div class="col-2">
<img src="img/logo.png" alt="logo">
</div>
<div class="col-6 align-self-center text-right">
<a href="index.html" class="text-white lead">Back</a>
</div>
</div>
</header>
</div>
</div>
<div class="container my-5 py-2" id="main_section">
<h2 class="text-center font-weight-bold my-5">IDEATHON</h2>
<div class="row">
<div class="col-md-8 offset-md-2">
<p class="lead text-center">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p>
</div>
</div>
</div>
<div class="jumbotron jumbotron-fluid" id="copyright">
<div class="container">
<div class="row justify-content-between">
<div class="col-md-6 text-white align-self-center text-center text-md-left my-2">
Copyright © 2019 EDC JSSATEN
</div>
<div class="col-md-6 align-self-center text-center text-md-right my-2" id="social-media">
<a href="https://www.facebook.com/ecell.jssaten" class="d-inline-block text-center ml-2">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
<a href="https://www.linkedin.com/company/edc-jssate/" class="d-inline-block text-center ml-2">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
<a href="https://www.instagram.com/ecelljss/" class="d-inline-block text-center ml-2">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
<a href="#top" class="d-inline-block text-center ml-2">
<i class="fa fa-arrow-up" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
</div>
<script src="js/aos.js"></script>
<script>
AOS.init({
});
</script>
</body>
</html>