-
Notifications
You must be signed in to change notification settings - Fork 0
/
tutorial_1.php
executable file
·74 lines (67 loc) · 2.9 KB
/
tutorial_1.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Optimize the materials of a car</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<style>
.top-bar {
position: fixed;
top: calc(100vh / 12);
width: 100%;
background: white;
padding: 10px 0;
box-shadow: none;
}
.explanatory-text {
width: 70%;
margin: 0 ;
text-align: left;
}
</style>
</head>
<body>
<div class="top-bar">
<div class="container d-flex justify-content-between align-items-center">
<h4>Tutorial: Let's first learn what "Variable" and "Objective" mean in optimization.</h4><br>
<!-- <form action="intro.php">
<button type="submit" class="btn btn-outline-primary">Skip</button>
</form> -->
</div>
</div>
<div class="container mt-4">
<br>
<br>
<br>
<br>
<br>
<br>
<!-- <h3>Let's go through a short tutorial to learn what "Variable" and "Objective" mean in optimization.</h3><br> -->
<div class="explanatory-text">
<p><strong>Variables</strong> are the factors that we want to change.</p><p>For example, when optimizing the material design for a car body, variables might include material thickness, strength, and density.</p>
<br>
<p><strong>Objectives</strong> are the goals we aim to achieve by changing these variables.</p><p>For example, objectives might include minimizing the car's cost and maximizing the durability of the car body.</p>
<br>
</div>
<!-- Placeholder for the GIF image -->
<div class="text-center mb-4">
<img src="Pictures/image8.png" alt="Specify variables" class="img-fluid" width="60%">
</div>
<!-- Navigation Buttons -->
<div class="row">
<div class="col text-left">
<a href="index_2.php" class="btn btn-outline-primary">Previous</a>
</div>
<div class="col text-right">
<a href="material_1.php" class="btn btn-primary">I understand</a>
</div>
</div>
</div>
<!-- Bootstrap JS and dependencies -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</body>
</html>