-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbom.html
More file actions
65 lines (57 loc) · 1.69 KB
/
bom.html
File metadata and controls
65 lines (57 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XBX47MQ0SS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XBX47MQ0SS');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Robot Study Companion (RSC)</title>
<link rel="stylesheet" href="styles.css">
<link rel="apple-touch-icon" sizes="180x180" href="favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon_io/favicon-16x16.png">
<link rel="manifest" href="favicon_io/site.webmanifest">
<style>
body {
font-family: Arial, sans-serif;
margin: 2rem;
background: #fefefe;
}
h1 {
text-align: center;
margin-bottom: 1rem;
}
iframe {
border: none;
width: 100%;
height: 900px;
}
.back-link {
display: inline-block;
margin: 2rem auto;
text-align: center;
display: block;
font-size: 1rem;
color: #0077cc;
text-decoration: none;
}
.back-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>📦 Bill of Materials — RSC v4 UG 2025–26</h1>
<iframe
src="https://docs.google.com/spreadsheets/d/1UbIZRTuzE_GoLdRnKJGjX-nvzgFd1jiu8XeI2aDusfo/edit?usp=sharing"
allowfullscreen
></iframe>
<a href="https://rsc.ee/" class="back-link">← Back to Homepage</a>
</body>
</html>