-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (83 loc) · 4 KB
/
index.html
File metadata and controls
97 lines (83 loc) · 4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/index-style.css">
<link rel="icon" href="img/pbico.ico" type="icon" />
<script src="js/index.js"></script>
<title>PicoBricks IDE</title>
<link rel="canonical" href="https://picobricks.com/pages/ide" />
</head>
<body>
<nav class="navbar">
<img src="img/logo.png" alt="picologo" class="logo">
<ul>
<li><a href="https://picobricks.com/">Homepage</a></li>
<li><a href="https://docs.picobricks.com/en/latest/">Documents</a></li>
<li><a href="https://www.robotistan.com/">Buy</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div class="banner">
<div class="video">
<img src="img/pico1.png" alt="pico" class="picovideo">
</div>
<div class="text">
<h2>PicoBricks IDE</h2>
<h3>Make, Run, Split, Merge.</h3>
<p>PicoBricks is a fantastic project development kit for STEM educators and<br> makers of all levels.
No soldering and wiring. There is unlimited creativity!
</p>
<a href="#" onclick="GotoHorizontal()">PicoJr</a>   
<a href="#" onclick="GotoVertical(0)">PicoBlocks</a>   
</div>
</div>
<div class="exp">
<h2>What is PicoBricks IDE?</h2><br>
<p>Pico Bricks is an electronic development board + software which is designed for use in maker projects.
With ten detachable modules included, Pico Bricks can be used to create a wide variety of projects. It also includes a protoboard that you can use to add your own modules!
</p><br><br>
<hr style="width:50%;text-align:left;margin-left:0">
</div>
<div class="editor">
<div class="jr">
<img src="img/jr.png" alt="jr" class="responsive" onclick="GotoHorizontal()" style="cursor: pointer;">
<h2>PicoJr</h2>
<p>Pico Bricks Dev & Learning Board designed for great flexibility!
With its Pico Bricks IDE + Simulator, you can use both, block coding and code editor feature!
</p>
</div>
<div class="blok">
<img src="img/bl.png" alt="blockly" class="responsive" onclick="GotoVertical(0)" style="cursor: pointer;">
<h2>PicoBlockly</h2>
<p>Pico Bricks Dev & Learning Board designed for great flexibility!
With its Pico Bricks IDE + Simulator, you can use both, block coding and code editor feature!
</p>
</div>
<div class="py">
<img src="img/py.png" alt="python" class="responsive" onclick="GotoVertical(1)" style="cursor: pointer;">
<h2>PicoPy</h2>
<p>Pico Bricks Dev & Learning Board designed for great flexibility!
With its Pico Bricks IDE + Simulator, you can use both, block coding and code editor feature!
</p>
</div>
<div class="sim">
<img src="img/sim.png" alt="simulator" class="responsive" onclick="GotoSimulator()" style="cursor: pointer;">
<h2>PicoSimulator</h2>
<p>Pico Bricks Dev & Learning Board designed for great flexibility!
With its Pico Bricks IDE + Simulator, you can use both, block coding and code editor feature!
</p>
</div>
</div>
<footer>
<div class="footer-container">
<p>Copyright © 2023 Robotistan. PicoBricks is a brand of Robotistan. All Rights Reserved. </p>
</div>
</footer>
</div>
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
</body>
</html>