-
Notifications
You must be signed in to change notification settings - Fork 0
/
feedback.html
42 lines (36 loc) · 1.24 KB
/
feedback.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
<!doctype html>
<html>
<head>
<title>Newspark - Feedback</title>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1">
<link rel="stylesheet" href="/node_modules/picnic/picnic.min.css">
<link rel="stylesheet" href="/assets/css/font-awesome.css">
<link rel="stylesheet" href="/assets/css/index.css">
</head>
<body>
<header>
<nav>
<a href="/" class="brand">
<img class="logo" src="/assets/img/logo.png" />
<span>Newspark</span>
</a>
<input id="bmenub" type="checkbox" class="show">
<label for="bmenub" class="burger pseudo button icon-paper-plane-empty"></label>
<div class="menu">
<a href="/feedback.html" class="pseudo button icon-paper-plane-empty">Envianos tus noticias</a>
</div>
</nav>
</header>
<main class="feedback">
<h1>Nos estamos olvidando de algo?</h1>
<p>Si hay una noticia que creas relevante que agreguemos, ¡envianos los links a los distintos diarios y los revisaremos!</p>
<form>
<input type="text" name="name" required placeholder="Nombre">
<input type="email" name="email" required placeholder="Email">
<textarea rows="10" required placeholder="Mensaje"></textarea>
<input type="submit" value="Enviar">
</form>
</main>
</body>
</html>