forked from Ephraim-Bryski/seeciv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (39 loc) · 1.18 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
<link rel="stylesheet" href="main_pages.css">
<script src="tab_bar.js"></script>
<head>
<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
</head>
<body>
<header></header>
<div class="title">Mechanics of Solids</div>
<div class="topic-group">
<a href="stress3D.html">
<div class="topic-link">
<img src="stress3D sample.jpg" style="width:100%;">
3D Stress Strain Relations
</div>
</a>
<a href="bending.html">
<div class="topic-link">
<img src="bending sample.jpg" style="width:100%;">
Pure Bending
</div>
</a>
<a href="beam.html">
<div class="topic-link" >
<img src="beam sample.jpg" style="width:100%;">
Stresses in Beam
</div>
</a>
<a href="torsion.html" >
<div class="topic-link">
<img src="torsion sample.jpg" style="width:100%;">
Torsion
</div>
</a>
</div>
</body>
<script>
var tabDiv=document.getElementsByTagName("header")[0]
makeTabBar(tabDiv)
</script>