-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (53 loc) · 1.96 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>10Pines email signature</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="generator">
<iframe class="tutorial" width="560" height="315" src="https://www.youtube.com/embed/XMMcOyOZSXw" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<label>
<span>
Nombre Completo
</span>
<input name="fullName" placeholder="Nombre completo" value="Darío García" />
</label>
<label>
<span>
Titulo
</span>
<input name="title" placeholder="Titulo" value="Agile Software Development" />
</label>
<button>Generar firma</button>
</div>
<div class="container hidden">
<div class="email-placeholder">
<div class="line large"></div>
<div class="line medium"></div>
<div class="line large"></div>
<div class="line medium"></div>
<div class="line large"></div>
<div class="line medium"></div>
</div>
<div class="signature">
<a href="https://10pines.com" target="_blank">
<img class="brand" width="108" src="https://10pines.github.io/email-signature/10pines-firma@2x.png"/>
</a>
<section>
<h1>--- PINE NAME ---</h1>
<h2>--- PINE TITLE ---</h2>
<p>Alem 896, Floor 6, Buenos Aires, Argentina</p>
<p>+54 11 6091 3125</p>
</section>
</div>
<button>Volver</button>
</div>
<div class="copied hidden">Copiado al portapapeles!</div>
<script src="index.js"></script>
</body>
</html>