-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
195 lines (178 loc) · 5.86 KB
/
index.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!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="icon"
href="./images/favicon.svg"
type="image/gif"
sizes="16x16"
/>
<link rel="stylesheet" href="./styles/styles.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap"
rel="stylesheet"
/>
<title>Robot factory</title>
</head>
<body onload="showAlert(); changeClassOnLoad()">
<header class="page-header">
<nav class="navbar">
<li>
<span class="factory">ROBOT FACTORY</span>
</li>
<li class="playtech-logo">
<a href="https://www.playtech.com/" target="_blank">
<img
src="https://assets.playtech.com/application/files/2714/6279/0513/playtech-logo.png?version=1644420652"
alt="Playtech"
class="logo"
/></a>
</li>
</nav>
</header>
<section class="container-1" id="robot-section-1">
<div class="ribbon-vertical">
<div id="ribbon-text">
BASIC <br />
ROBOT
</div>
</div>
<div class="robot-container">
<div class="robot-drawing">
<div class="robot-head">
<div class="mouth"></div>
<div class="eyes">
<div class="eyes-1"></div>
<div class="eyes-2"></div>
</div>
</div>
<div class="chest-container">
<div class="left-arm"></div>
<div class="body"></div>
<div class="right-arm"></div>
</div>
<div class="legs">
<div class="left-leg"></div>
<div class="right-leg"></div>
</div>
<!-- // Класа за женските роботчета \\-->
<!-- <div class="skirt"></div>
<span class="left-leg-skirt"> </span>
<span class="right-leg-skirt"> </span> -->
<h4 id="robot-name-h4">Robot Name</h4>
</div>
</div>
<div class="paragraphs">
<section>
<p id="para-1">
<strong>P</strong>aragraph text here. Text-align on left, 3% space
from right border. Text is only 2 lines and ends with three dots ...
Because its too long. On hover full text is shown as tooltip. First
letter is bold.
</p>
<p id="para-2">
<span id="italic">Paragraph</span> text here. Text justified, 6%
space from right border. Text is only 2 lines and ends with three
dots ... Because its too long. On hover full text is shown. First
word is Italic.
</p>
<p id="para-3">
<img
src="./images/goodluck.jpg"
alt="Goodluck Image"
class="goodluck-img"
/>
Paragraph text here. Text-align on left, 9 % from right border.
Image on left side.
</p>
</section>
</div>
</section>
<section class="container-2">
<nav class="create-robot-nav">
<h1 class="form-header">Create Robot</h1>
</nav>
<hr />
<div class="required">
<section>
<p>
<i
>INPUTs with the <span style="color: red">*</span> are
required.</i
>
</p>
</section>
</div>
<form class="create-robot-form" id="form1">
<div>
<label>Name <span style="color: red">*</span></label>
<input type="text" placeholder="Robot name" id="robot-name" />
</div>
<div>
<label>Select Type <span style="color: red">*</span> </label>
<select id="robot-type" id="robot-type" required>
<option value="unselected" selected>-- Unselected --</option>
<option value="male-robot">Male</option>
<option value="female-robot">Female</option>
</select>
</div>
<div>
<label> Select Color <span style="color: red">*</span></label>
<input type="color" value="" id="colorSelector" required />
</div>
<div class="SelectOptions">
<label> Select Options</label>
<br />
<div>
<input
type="checkbox"
id="can-jump"
name="canjump"
value="Jumping"
/>
<label for="can-jump">can jump</label>
</div>
<div>
<input
type="checkbox"
id="can-talk"
name="cantalk"
value="Talking"
/>
<label for="can-talk">can talk</label>
</div>
<div>
<input
type="checkbox"
id="can-blink"
name="canblink"
value="Blink"
/>
<label for="vehicle3">can blink</label>
</div>
</div>
<div class="SelectOptions">
<label id="centered-align">Robot phrase:</label>
<textarea placeholder="text-area"> </textarea>
<br />
</div>
</form>
<div class="button-container">
<button type="submit" class="submit-button" form="form1" onsubmit="showCreatedRobots()">Create</button>
<button type="reset" class="reset-button" form="form1">
Show Created Robots
</button>
<button type="button" class="btn-show-robot-sections" onclick="showCreatedRobots()">
Show robot sections
</button>
</div>
<hr />
</section>
<script src="./scripts/script.js"></script>
</body>
</html>