-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (55 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Soil Analysis Portal</title>
<link rel="stylesheet" href="assets/styles.css">
<link rel="icon" href="assets/favicon.ico">
</head>
<body>
<header>
<img src="assets/logo.png" alt="Soil Analysis Portal Logo" class="logo">
<h1>Welcome to Soil Mechanics Illustration Apps</h1>
</header>
<main>
<div class="widget-container">
<a href="https://water-in-soils.onrender.com" target="_blank">
<div class="widget">
<img src="assets/water-in-soils-icon.png" alt="Water in Soils">
<h3>Water in Soils</h3>
<p>Click to explore water in soils illustration</p>
</div>
</a>
<a href="https://stress-in-soils.onrender.com" target="_blank">
<div class="widget">
<img src="assets/stress_in_soils_icon.png" alt="Stress in Soils">
<h3>Stress in Soils</h3>
<p>Click to explore Stress in Soils illustration</p>
</div>
</a>
<a href="https://consolidation-8ezw.onrender.com" target="_blank">
<div class="widget">
<img src="assets/consolidation-icon.png" alt="Consolidation">
<h3>Consolidation</h3>
<p>Click to explore consolidation illustration</p>
</div>
</a>
<a href="https://direct-shear.onrender.com" target="_blank">
<div class="widget">
<img src="assets/direct_shear_icon.png" alt="Direct Shear">
<h3>Direct Shear</h3>
<p>Click to explore direct shear illustration</p>
</div>
</a>
<a href="https://earth-pressure.onrender.com" target="_blank">
<div class="widget">
<img src="assets/Earth_pressure_1.png" alt="Direct Shear">
<h3>Earth Pressure 1</h3>
<p>Click to explore earth pressure illustration</p>
</div>
</a>
</div>
</main>
</body>
</html>