-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (72 loc) · 3.26 KB
/
Copy pathindex.html
File metadata and controls
77 lines (72 loc) · 3.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alfredicus webpage</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://getbootstrap.com/docs/5.3/assets/css/docs.css" rel="stylesheet">
<title>Bootstrap Example</title>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body class="p-3 m-0 border-0 bd-example m-0 border-0">
<div class="title-page">
<h1>Alfredicus webpage</h1>
</div>
<br>
<h3 style="text-align: center;">(last update: 02-08-2024)</h3>
<br>
<div class="text-center">
<button onclick="warn()" type="button" class="btn btn-warning">Warning</button>
</div>
<br>
<br>
<p>
Working on <a href="https://github.com/alfredicus/stress">stress</a> lib and <a
href="https://github.com/alfredicus/tecto-stress">Tecto-Stress</a> webapp.
</p>
<p>
The doc is <a href="https://github.com/alfredicus/tecto-stress/blob/main/doc/toc.md">here</a>
</p>
<div id="carouselExampleIndicators" class="carousel carousel-dark slide" style="width: 50%;left:25%;">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2"
aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block mx-auto" src="./media/conjugate_compactional_faults.jpg" width="70%" alt=""
style="border-style: double;"></img>
</div>
<div class="carousel-item">
<img class="d-block mx-auto" src="./media/striated_fault.jpg" width="70%" alt=""
style="border-style: double;"></img>
</div>
<div class="carousel-item">
<img class="d-block mx-auto" src="./media/stylolite_interface.jpg" width="70%" alt=""
style="border-style: double;"></img>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleIndicators"
data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleIndicators"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<script>
function warn() {
alert('This page is under construction!')
}
</script>
</body>
</html>