-
Notifications
You must be signed in to change notification settings - Fork 0
/
building_instruction.html
78 lines (74 loc) · 3.31 KB
/
building_instruction.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="BricksRL: Building Instructions">
<meta name="keywords" content="BricksRL, LEGO, Building Instructions">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>BricksRL Building Instructions</title>
<link href="https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro" rel="stylesheet">
<link rel="stylesheet" href="./static/css/bulma.min.css">
<link rel="stylesheet" href="./static/css/index.css">
<link rel="icon" href="./static/images/logo.svg">
<style>
.video-container {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.video-wrapper {
flex: 1 1 45%;
max-width: 500px;
}
.video-wrapper iframe {
width: 100%;
height: 300px;
}
</style>
</head>
<body>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item" href="index.html">Home</a>
<a class="navbar-item" href="building_instruction.html">Building Instructions</a>
<a class="navbar-item" href="other_projects.html">Other Projects</a>
</div>
</div>
</nav>
<section class="section">
<div class="container is-max-desktop">
<h1 class="title is-1 has-text-centered">Building Instructions</h1>
<div class="content">
<h2 class="title is-3">2Wheeler & RoboArm</h2>
<p>Video recording of the building instructions for the 2Wheeler and the RoboArm robot.</p>
<div class="video-container">
<div class="video-wrapper">
<iframe src="https://drive.google.com/file/d/1JJfucZk-9ywLZ2lZsWtHnyC9_oIEsBv2/preview" title="Google Drive video player" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="video-wrapper">
<iframe src="https://drive.google.com/file/d/18MtNPtGXU83uNFan452pmQhdrtW_324Q/preview" title="Google Drive video player" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
<div class="content">
<h2 class="title is-3">Walker</h2>
Instructions for assembling the Walker robot and other models that can be created with this kit are available <span><a href="https://www.lego.com/es-es/service/buildinginstructions/51515">here</a></span>.
</div>
</div>
</section>
<footer class="footer">
<div class="content has-text-centered">
<p>BricksRL © 2024</p>
</div>
</footer>
</body>
</html>