-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunderconstruction.html
More file actions
41 lines (34 loc) · 1.03 KB
/
underconstruction.html
File metadata and controls
41 lines (34 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Iakl</title>
<link rel="stylesheet" href="/css/bootstrap.min.css">
<script src="/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="/css/style.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<!-- Navigation bar-->
<div id="nav-placeholder">
</div>
<script>
$(function () {
$("#nav-placeholder").load("/navbar.html");
});
</script>
<!--end of Navigation bar -->
<main class="container">
<section>
<img src="/img/myself.jpeg" alt="Photo of Esteban Gonzalez Iakl" class="profile-pic-main">
<h1>Página Under Construction</h1>
</section>
</main>
<footer class="bg-light">
<div class="container-fluid">
<p class="text-center text-muted">© 2023 Esteban Gonzalez Iakl</p>
<button class="btn btn-primary">Contact me</button>
</div>
</footer>
</body>
</html>