This repository was archived by the owner on Apr 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
146 lines (128 loc) · 4.39 KB
/
index.html
File metadata and controls
146 lines (128 loc) · 4.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Theme Made By www.w3schools.com - No Copyright -->
<title>Jiskefet</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<style>
body {
font: 20px Montserrat, sans-serif;
line-height: 1.8;
color: #f5f6f7;
}
p {font-size: 16px;}
.margin {margin-bottom: 45px;}
.bg-1 {
background-color: #25167A; /* Blauw */
color: #ffffff;
}
.bg-2 {
background-color: #474e5d; /* Dark Blue */
color: #ffffff;
}
.bg-3 {
background-color: #ffffff; /* White */
color: #000000;
}
.bg-4 {
background-color: #2f2f2f; /* Black Gray */
color: #fff;
}
.container-fluid {
padding-top: 70px;
padding-bottom: 70px;
}
.navbar {
padding-top: 15px;
padding-bottom: 15px;
border: 0;
border-radius: 0;
margin-bottom: 0;
font-size: 12px;
letter-spacing: 5px;
}
.navbar-nav li a:hover {
color: #1abc9c !important;
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Jiskefet</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a class="nav-link active" href="#home">Home</a></li>
<li><a class="nav-link" href="#about">About</a></li>
<li><a class="nav-link" href="#background">Background</a></li>
<li><a class="nav-link" href="#goal">Goal</a></li>
<li><a class="nav-link" href="#people">People involved</a></li>
<li><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- First Container -->
<div class="container-fluid bg-1 text-center">
<h3 class="margin" id="home">What is Jiskefet?</h3>
<img src="photo.jpg" class="img-responsive img-circle margin" style="display:inline" alt="Jiskefet" width="350" height="350">
<h3>A bookkeeping system for the ALICE detector at <a href="http://cern.ch">CERN</a></h3>
</div>
<!-- Second Container -->
<div class="container-fluid bg-2 text-center">
<h3 class="margin" id="about">About us</h3>
<p></p>
</div>
<!-- Third Container (Grid) -->
<div class="container-fluid bg-3 text-center">
<h3 class="margin" id="background">Background</h3><br>
<div class="row">
</div>
</div>
<!-- Second Container -->
<div class="container-fluid bg-2 text-center">
<h3 class="margin" id="goal">Goal</h3>
<p></p>
</div>
<!-- Third Container (Grid) -->
<div class="container-fluid bg-2 text-center">
<h3 class="margin" id="people">People involved</h3><br>
<div class="row">
<div class="col-sm-4">
<a href="http://hva.nl"><img src="logo.svg" class="img-responsive margin" style="width:100%" alt="Image"></a>
<p></p>
</div>
<div class="col-sm-4">
<a href="http://cern.ch"><img src="cern.png" class="img-responsive margin" style="width:100%" alt="Image"></a>
<p></p>
</div>
<div class="col-sm-4">
<a href="http://mospolytech.ru/?eng"><img src="moscow.png" class="img-responsive margin" style="width:100%" alt="Image"></a>
<p></p>
</div>
</div>
</div>
<!-- Second Container -->
<div class="container-fluid bg-2 text-center">
<h3 class="margin" id="contact">Contact</h3>
<p></p>
</div>
<!-- Footer -->
<footer class="container-fluid bg-4 text-center">
<p>Jiskefet is a AUAS project <a href="https://www.amsterdamuas.com">www.amsterdamuas.com</a></p>
</footer>
</body>
</html>