-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (55 loc) · 2.34 KB
/
index.html
File metadata and controls
66 lines (55 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Digital jumper tool</title>
</head>
<body>
<header class="presentation card">
<h1 class="presentation__title">Digital Jumper Tool</h1>
<p class="presentation__subtitle">Complete the parameters to calculate the length of the jumper.</p>
</header>
<main class="container">
<form class="form card" aria-label="Jumper parameters">
<fieldset class="form__fields">
<legend class="form__legend">Parameters</legend>
<div class="form__row">
<label for="pitchSize" class="form__label">Pitch size (mm)</label>
<input class="form__input form__input--numeric" type="number" id="pitchSize" name="pitchSize"
value="2.54" placeholder="Ej: 2.54" required>
</div>
<div class="form__row">
<label for="conectorSize" class="form__label">Connector size (mm)</label>
<input class="form__input form__input--numeric" type="number" id="conectorSize" name="conectorSize"
value="5" placeholder="Ej: 8" required>
</div>
<div class="form__row">
<label for="pinNumber" class="form__label">Number of pins</label>
<input class="form__input form__input--numeric" type="number" id="pinNumber" name="pinNumber"
value="0" min="0" required>
</div>
</fieldset>
</form>
<aside class="result card">
<h2 class="result__title">Jumper's length</h2>
<p class="result__text">
<span id="resultTextCm"></span> cm <br>
<span class="result__text--alt">
<span id="resultTextMm"></span> mm
</span>
</p>
</aside>
</main>
<footer class="container">
<div class="footer__site-footer">
<p class="footer__text">
Crafted for makers by
<a href="https://github.com/jacsamg" target="_blank">@jacsamg</a>
</p>
</div>
</footer>
<script src="index.js"></script>
</body>
</html>