-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
147 lines (127 loc) · 4.09 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
<!DOCTYPE HTML>
<html>
<head>
<title>CSE 6 Official website</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(".bordered").mouseover(function(){
$(this).animate({fontSize:70},500);
});
$(".bordered").mouseout(function(){
$(this).animate({fontSize:56},500);
});
$(".dj").hover(function() {
$(this).attr({src:"images/dj.jpg",width:140});
},function() {
$(this).attr({src:"images/pic01.png",width:89});
});
$(".logo").mouseover(function(){ $(".anim").animate({width:350},500);
});
$(".logo").mouseout(function(){ $(".anim").animate({width:0},200);
});
});
</script>
</head>
<body>
<header id="header">
<div class="inner">
<a href="index.html" class="logo"><strong>Amity Computer Science and Engineering</strong> </a>
<nav id="nav">
<a href="index.html">Home</a>
<a href="#.html">About Us</a>
<a href="#.html">Contact Us</a>
</nav>
<a href="#navPanel" class="navPanelToggle"><span class="fa fa-bars"></span></a>
<hr style="margin-top: 0px" class="anim">
</div>
</header>
<section id="banner">
<div class="inner">
<header>
<h1 class="bordered">Welcome to CSE 6</h1>
</header>
<div class="flex ">
<div>
<span class="icon fa-university"></span>
<h3>E3-210</h3>
<p>Room number</p>
</div>
<div>
<span class="icon fa-mortar-board"></span>
<h3>58</h3>
<p>Total number of students in the class</p>
</div>
<div>
<span class="icon fa-user"></span>
<h3>Aditya & Arjeeta</h3>
<p>Class Representatives</p>
</div>
</div>
<footer>
<a href="#" class="button">Get Started</a>
</footer>
</div>
</section>
<!-- Three -->
<section id="three" class="wrapper align-center">
<div class="inner">
<div class="flex flex-2">
<article>
<div class="image round">
<img src="images/pic01.png" alt="Pic 01" class="dj" />
</div>
<header>
<h3>Dhananjai<br>Sharma</h3>
</header>
<p>Hi, I am a student of CSE-6 and <br> I am working on the development of this website</p>
<footer>
<a href="#" class="button">Learn More</a>
</footer>
</article>
<article>
<div class="image round">
<img src="images/pic02.jpg" alt="Pic 02" />
</div>
<header>
<h3>Add your pic</h3>
</header>
<p>Please add an image of yours if you are also working on this website</p>
<footer>
<a href="#" class="button">Learn More</a>
</footer>
</article>
</div>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="inner">
<h3>Get in touch</h3>
<form action="#" method="post">
<div class="field half first">
<label for="name">Name</label>
<input name="name" id="name" type="text" placeholder="Name">
</div>
<div class="field half">
<label for="email">Email</label>
<input name="email" id="email" type="email" placeholder="Email">
</div>
<div class="field">
<label for="message">Message</label>
<textarea name="message" id="message" rows="6" placeholder="Message"></textarea>
</div>
<ul class="actions">
<li><input value="Send Message" class="button alt" type="submit"></li>
</ul>
</form>
<div class="copyright">
© DevastatingDj. Design: <a href="https://google.com">Design is stolen.</a>
</div>
</div>
</footer>
</body>
</html>