-
Notifications
You must be signed in to change notification settings - Fork 0
/
generator.html
128 lines (103 loc) · 3.5 KB
/
generator.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
<html lang="it">
<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>Character Generator</title>
<!-- CSS -->
<link rel="stylesheet" href="css/style.css" type="text/css">
<!-- ICO -->
<link rel="shortcut icon" type="image/x-icon" href="./img/favicon.ico">
</head>
<body>
<nav class="header">
<div class="header-content-site">
<a href="index.html"><img class="header-icon" src="img/icon_dark.png"></a>
<div class="header-name centered">Character Generator</div>
</div>
<div class="header-content-menu">
<img class="header-menu" src="img/white_menu.png" onclick="openNav()">
</div>
</nav>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="#">About</a>
<a href="#">Services</a>
<a href="#">Clients</a>
<a href="#">Contact</a>
</div>
<div class="main generator-height">
<div class="generator-type">
<p>
Generator type:
</p>
</div>
<div class="generator">
<div class="generator-main">
<div class="generator-lore justified">
<p>
Nome:
</p>
</div>
<div class="generator-lore justified">
<p>
Cognome:
</p>
</div>
<div class="generator-lore justified">
<p>
Data di nascita:
</p>
</div>
<div class="generator-lore justified">
<p>
Razza:
</p>
</div>
<div class="generator-lore justified">
<p>
Sesso:
</p>
</div>
<div class="generator-lore justified">
<p>
Peso:
</p>
</div>
<div class="generator-lore justified">
<p>
Altezza:
</p>
</div>
<div class="generator-lore justified">
<p>
Colore occhi:
</p>
</div>
<div class="generator-lore justified">
<p>
Descrizione:
</p>
</div>
<div class="generator-lore justified">
<p>
Razza:
</p>
</div>
</div>
<div class="generator-special">
<div class="generator-qr">
<img class="generator-icon" src="img/qr.png">
</div>
<div class="generator-lore justified">
<p>
SPECIAL:
</p>
</div>
</div>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="js/query.js"></script>
</body>
</html>