-
Notifications
You must be signed in to change notification settings - Fork 0
/
facilities.html
135 lines (103 loc) · 3.77 KB
/
facilities.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset = 'utf-8'>
<meta name = 'viewport' content = 'width=device-width, initial-scale=1.0'>
<title> Polyhedra Fab Lab </title>
<link rel="icon" href="icon.png">
<link rel = "stylesheet" href = "styleFacilities.css">
<link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
</head>
<body>
<header>
<img src="logoph.png" width="250px">
<div class="menu-btn"></div>
<div class="navigation">
<div class="navigation-items">
<a href="index.html">Home</a>
<a href="services3.html">Services</a>
<a href="#">Facilities</a>
<a href="https://polyhedralab.blogspot.com/">Blog</a>
<a href="about.html">About</a>
</div>
</div>
</header>
<section class="home">
<div class = "content active">
<h1>Facilities.</h1>
<p>Most of our prototyping is done in-house, including machining, cutting,
engraving, 3D printing, etc.
Our <a href= "https://www.fablabs.io/labs/polyhedra">facilities</a>
are registered as a fab lab in the global <a href="https://www.fablabs.io/">fab lab register</a> maintained by
<a href = "https://fabfoundation.org/">Fab Foundation</a> and are open to public during regular working hours.
Since 2017, Polyhedra fab lab introduced
<span style = "font-weight:bolder">memberships</span> which come with many
benefits, including a <span style = "font-weight:bolder">50%</span> subsidized
pricing on specific equipment and available materials covered by Polyhedra
and its partners and 24×7 access.
Membership costs symbolic 100 RSD/month and is paid annually for the remaining
amount of months within the given year.</p>
<p>
Pricing Schedule:
<br>
<br>
Equipment:
FDM 3D Printers: 240 RSD/hr
Paste Extruder 3D Printers: 600 RSD/hr
SLA/DLP 3D Printers: 600 RSD/hr
CNC engravers: 600 RSD/hr
CNC mills: 1200 RSD/hr
Laser Engraver: 600 RSD/hr
Laser Cutters: 1200 RSD/hr
Vinyl Cutter: 240 RSD/hr
Materials:
Colorfabb PLA Regular: 30 RSD/g
Colorfabb PLA Special: 60 RSD/g
For a complete list of available materials , contact us at [email protected].
Labor:
Assistance: 1200 RSD/hr
</p>
</div>
<div class = "media-icons">
<a href = "https://discord.gg/dGw4bq3mDC"> <i class = "fab fa-discord"></i> </a>
<a href = "https://sr-rs.facebook.com/Polyhedra3D/"> <i class = "fab fa-facebook-f"></i> </a>
<a href = "https://www.instagram.com/polyhedra3d/"> <i class = "fab fa-instagram"></i> </a>
<a href = "https://twitter.com/polyhedra3d"> <i class = "fab fa-twitter"></i> </a>
</div>
</section>
<script type="text/javascript">
//Javascript of responsive navigation menu
const menuBtn = document.querySelector(".menu-btn");
const navigation = document.querySelector(".navigation");
menuBtn.addEventListener("click", () => {
menuBtn.classList.toggle("active");
navigation.classList.toggle("active");
});
//Javascript for video slider navigation
const btns = document.querySelectorAll(".nav-btn");
const slides = document.querySelectorAll(".video-slide");
const contents = document.querySelectorAll(".content");
var sliderNav = function(manual){
btns.forEach((btn) => {
btn.classList.remove("active");
});
slides.forEach((slide) => {
slide.classList.remove("active");
});
contents.forEach((content) => {
content.classList.remove("active");
});
btns[manual].classList.add("active");
slides[manual].classList.add("active");
contents[manual].classList.add("active");
}
btns.forEach((btn, i) => {
btn.addEventListener("click", () => {
sliderNav(i);
});
});
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/tilt.jquery.js"></script>
</body>
</html>