forked from Sarafossati/little-printer-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testo.html
81 lines (79 loc) · 2.29 KB
/
testo.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
<!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" />
<title>Mohole little printer</title>
<link rel="stylesheet" href="fontawesome/css/all.min.css" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Little Printer Workshop</h1>
</header>
<main>
<div style="background-color: #ff4655">
<a>Editor</a>
</div>
<div id="editorjs">
<p>
<input
type="file"
accept="image/*"
name="image"
id="file"
onchange="loadFile(event)"
style="display: none"
/>
</p>
<p>
<label class="update-img" for="file" style="cursor: pointer"
>Upload Image</label
>
</p>
<p><img id="output" width="384" /></p>
</div>
</main>
<section class="buttons">
<div
style="
border: 2px solid #0069b4;
border-radius: 20px;
padding: 10px;
margin: 15px;
"
>
<a href="index.html" style="color: #0069b4; font-size: 20px"
>Indietro</a
>
</div>
<div
style="
background-color: #ff4655;
color: #ffffff;
border-radius: 20px;
padding: 10px;
margin: 15px;
"
>
<a href="#" style="font-size: 20px">Stampa</a>
</div>
</section>
<footer style="margin-top: 20px">
<a href="https://www.moholepeople.it/codefighters/">By CodeFighter</a>
<section>
<a href="tel:+02 3651 3670"><i class="fas fa-phone-alt"></i></a>
<a href="mailto:[email protected]"><i class="fas fa-envelope"></i></a>
<a href="https://scuola.mohole.it"><i class="fas fa-desktop"></i></a>
</section>
</footer>
<script src="https://cdn.jsdelivr.net/npm/@editorjs/editorjs@latest"></script>
<script src="https://cdn.jsdelivr.net/npm/@editorjs/header@latest"></script>
<script src="./scripts/editor.js"></script>
</body>
</html>