-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpictures.html
52 lines (44 loc) · 2.1 KB
/
pictures.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Julie Abraham</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="css/bootstrap.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Font Awesome CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <!-- local CSS -->
<!-- Local CSS -->
<link href="css/jla.css" rel="stylesheet">
<style>
.under-construction {
visibility: hidden;
}
</style>
</head>
<body class="text-center">
<!--<div class="d-flex w-100 h-100 p-3 mx-auto flex-column">-->
<div class="d-flex w-100 h-100 p-3 flex-column">
<header class="mb-auto">
</header>
<main id="main" class="p-5">
<img src="images/icon.png" alt=""/>
<h1>Pictures</h1>
</main>
<footer class="mt-auto">
<p>© Julie Abraham 2019.</p>
</footer>
</div>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" crossorigin="anonymous"></script>
<!-- local JavaScript -->
<script src="js/jla.js" type="text/javascript"></script>
<script>
$(document).ready(function () {
});
</script>
</body>
</html>