forked from IshaniAmin/Maestro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (59 loc) · 2.74 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
<!DOCTYPE html>
<html>
<head>
<title>Main Index Page</title>
<link href="https://fonts.googleapis.com/css?family=Muli" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/index_page.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.8/css/materialize.min.css">
</head>
<body>
<div id="backgroundPics" class="css-slideshow">
<figure>
<img src="assets/images/music1.jpg" width="100%" height="100%" />
</figure>
<figure>
<img src="assets/images/music2.jpg" width="100%" height="100%" />
</figure>
<figure>
<img src="assets/images/music3.jpeg" width="100%" height="100%" />
</figure>
<figure>
<img src="assets/images/music4.jpeg" width="100%" height="100%" />
</figure>
<figure>
<img src="assets/images/music5.jpg" width="100%" height="100%" />
</figure>
<figure>
<img src="assets/images/music6.jpg" width="100%" height="100%" />
</figure>
<figure>
<img src="assets/images/music7.jpeg" width="100%" height="100%" />
</figure>
<figure>
<img src="assets/images/music8.jpeg" width="100%" height="100%" />
</figure>
</div>
<div id="mainStuff">
<h1 id="header" class="col-md-12"> Welcome to Maestro </h1>
<p id="introParagraph" class="col-md-10 col-md-offset-1"> Here we have created an application that allows employees of a company to become better acquainted. Company culture is very important because it allows employees to feel more comfortable with their work place, which leads to increased productivity. </p>
<div class="carousel" id="options">
<a id="optionBlock1" class="carousel-item" href="registration.html">Create your Profile<img class="pictures" src="assets/images/write-music.jpeg" alt="Music notes"></a>
<a id="optionBlock2" class="carousel-item" href="personal_profile.html">View other Profiles<img class="pictures" src="assets/images/lookng-music.jpeg" alt="Searching records"></a>
<a id="optionBlock3" class="carousel-item" href="company_playlist.html">Company Playlist<img class="pictures" src="assets/images/music-player.jpeg" alt="Record player"></a>
</div>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.8/js/materialize.min.js"></script>
<script>
$(document).ready(function(){
$('.carousel').carousel();
});
</script>
</body>
<footer>
<div class="footer">
<© Copyright 2017 Ishani Amin Rhynas Silva Arron Linton/>
</div>
</footer>
</html>