forked from PaulGi48/C.O.S.S.A
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlumni.html
More file actions
159 lines (145 loc) · 5.37 KB
/
Alumni.html
File metadata and controls
159 lines (145 loc) · 5.37 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
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
<!DOCTYPE html>
<html lang="eng">
<head>
<title>About :: C.O.S.S.A</title>
<link href="css/bootstrap.css" rel='stylesheet' type='text/css' />
<!-- jQuery -->
<script src="js/jquery.min.js"></script>
<!-- Custom Theme files -->
<link href="css/style.css" rel='stylesheet' type='text/css' />
<link rel="shortcut icon" href="images/fav-icon.png" />
<!-- Custom Theme files -->
<!---- start-smoth-scrolling---->
<script type="text/javascript" src="js/move-top.js"></script>
<script type="text/javascript" src="js/easing.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$(".scroll").click(function(event) {
event.preventDefault();
$('html,body').animate({
scrollTop: $(this.hash).offset().top
}, 1000);
});
});
</script>
<!---- start-smoth-scrolling---->
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="application/x-javascript">
addEventListener("load", function() {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
</script>
<!----webfonts--->
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900' rel='stylesheet' type='text/css'>
<!---//webfonts--->
<!----start-top-nav-script---->
<script>
$(function() {
var pull = $('#pull');
menu = $('nav ul');
menuHeight = menu.height();
$(pull).on('click', function(e) {
e.preventDefault();
menu.slideToggle();
});
$(window).resize(function() {
var w = $(window).width();
if (w > 320 && menu.is(':hidden')) {
menu.removeAttr('style');
}
});
});
</script>
<!----//End-top-nav-script---->
</head>
</head>
<body>
<!----- start-header---->
<div id="home" class="header">
<div class="top-header">
<div class="container">
<div class="logo">
<a href="index.html"><img src="images/logo.png" title="yellow" /></a>
</div>
<!----start-top-nav---->
<nav class="top-nav">
<ul class="top-nav">
<li><a href="index.html">Home </a></li>
<li><a href="About Us.html ">About</a></li>
<li><a href="News.html ">News</a></li>
<li class="active"><a href=" Alumni.html ">Alumni</a></li>
<li><a href="Our Executives.html ">Our Executives</a></li>
<li><a href="Social.html">Contact</a></li>
</ul>
<a href="# " id="pull "><img src="images/nav-icon.png " title="menu " /></a>
</nav>
</div>
</div>
</div>
<!----- //End-header---->
<!---about us---->
<div class="about ">
<div class="top-heade ">
<div class="container ">
<div class="top-header-left ">
<h1>About us</h1>
</div>
<div class="top-header-right ">
<ul class="unstyled-list list-inline ">
<li><a href="index.html ">Home</a></li>
<li><span>:: About us</span></li>
</ul>
</div>
</div>
</div>
<style>
div.gallery {
margin: 5px;
border: 1px solid #ccc;
float: left;
width: 180px;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
}
</style>
</head>
<body>
<div class="gallery ">
<a target="_blank " href="img_5terre.jpg ">
<img src="img_5terre.jpg " alt="Cinque Terre " width="600 " height="400 ">
</a>
<div class="desc ">Add a description of the image here</div>
</div>
<div class="gallery ">
<a target="_blank " href="img_forest.jpg ">
<img src="img_forest.jpg " alt="Forest " width="600 " height="400 ">
</a>
<div class="desc ">Add a description of the image here</div>
</div>
<div class="gallery ">
<a target="_blank " href="img_lights.jpg ">
<img src="img_lights.jpg " alt="Northern Lights " width="600 " height="400 ">
</a>
<div class="desc ">Add a description of the image here</div>
</div>
<div class="gallery ">
<a target="_blank " href="img_mountains.jpg ">
<img src="img_mountains.jpg " alt="Mountains " width="600 " height="400 ">
</a>
<div class="desc ">Add a description of the image here</div>
</div>
</body>
</html>