-
Notifications
You must be signed in to change notification settings - Fork 4
/
contact.html
159 lines (142 loc) · 7.56 KB
/
contact.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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Add your site or application content here -->
<div id="container">
<header id="header">
<h1 class="logo">Training</h1>
<nav id="nav">
<ul>
<li><a href="index.html" title="Home">Home</a></li>
<li><a href="company.html" title="Company">Company</a></li>
<li class="current"><a href="contact.html" title="Contact">Contact</a></li>
<li><a href="helpdesk.html" title="Help desk">Help desk</a></li>
</ul>
<a class="menu" href="#">Menu</a>
</nav>
</header>
<section class="banner_section"></section>
<section class="main_section">
<article class="article clearfix">
<!-- inserisci tui il codice html -->
<form id="form" class="form_box">
<fieldset class="fieldset">
<ol>
<li class="left">
<label class="label" for="firstname">Name *</label><br>
<input class="input" id="firstname" name="firstname" type="text" placeholder="First and last name" required autofocus>
</li>
<li class="right">
<label class="label" for="email">Email *</label><br>
<input class="input" id="email" name="email" type="email" placeholder="[email protected]" required>
</li>
</ol>
</fieldset>
<fieldset class="fieldset">
<ol>
<li class="left">
<label class="label" for="born">Date of birth *</label><br>
<input class="input" id="born" name="born" type="date" min="1959-01-01" max="2010-01-01" required>
</li>
<li class="right">
<label class="label" for="topic">Topic *</label><br>
<input class="input" id="topic" name="topic" type="text" list="topic_list" required>
<datalist id="topic_list">
<option>help</option>
<option>job</option>
<option>info</option>
<option>thanks</option>
</datalist>
</li>
</ol>
</fieldset>
<fieldset class="fieldset">
<ol>
<li class="left">
<label class="label" for="note">Note *</label><br>
<textarea class="textarea" id="note" name="note" rows="5" required></textarea>
</li>
</ol>
</fieldset>
<fieldset class="fieldset">
<ol>
<li class="left" id="upload">
<label class="label" for="fileupload">Allega la tua foto</label><br>
<div id="holder"></div>
<p id="upload" class="hidden"><label>Drag & drop non supportato, ma puoi comunque inviare la tua foto:<br><input type="file" id="fileupload" name="fileupload"></label></p>
<p id="filereader">File API & FileReader API non supportati</p>
<p id="formdata">XHR2's FormData non è supportato</p>
<p id="progress">XHR2's upload progress non supportato</p>
<p>Trasferimento: <progress id="uploadprogress" min="0" max="100" value="0">0</progress></p>
<p>Trascina e rilascia un'immagine dal tuo desktop nell'area tratteggiata.</p>
</li>
</ol>
</fieldset>
<fieldset class="fieldset">
<fieldset class="fieldset">
<button class="submit" type=submit>Send</button>
<button class="save" type=submit>Save</button>
</fieldset>
</fieldset>
</form>
</article>
</section>
<aside id="aside" class="clearfix">
<ul class="callout_text clearfix">
<li>
<h2>Text #1</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</li>
<li>
<h2>Text #2</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</li>
<li>
<h2>Text #3</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</li>
</ul>
<ul class="callout_images">
<li>
<figure>
<img class="image" src="img/aside_01.jpg" alt="Text #1">
</figure>
</li>
<li>
<figure>
<img class="image" src="img/aside_02.jpg" alt="Text #2">
</figure>
</li>
<li>
<figure>
<img class="image" src="img/aside_03.jpg" alt="Text #3">
</figure>
</li>
</ul>
</aside>
<div class="clr"></div>
<footer id="footer">
<p class="copy">© Copyright Training. All Right Reserved.</p>
<a class="privacy" href="#" title="Privacy Policy">Privacy Policy</a>
</footer>
</div><!-- container -->
<script data-main="js/main" src="js/vendor/require.js"></script>
</body>
</html>