-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (34 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<!-- GLÓRIA A DEUXXXXX (acabou) -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Portal Rural</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section class="header-container">
<div class="form">
<form action="/action_page.php">
<label for="fname">Nome:</label>
<input type="text" id="nome" name="nomeevento" placeholder="Nome do evento...">
<label for="fname">Local:</label>
<input type="text" id="local" name="localevento" placeholder="Local do evento...">
<label for="lname">Data do Evento:</label>
<input type="date" data-date-inline-picker="true" />
<input id="time" type="time">
<a> às </a>
<input id="time" type="time">
<textarea id="subject" name="subject" placeholder="Detalhes do evento..." style="height:200px"></textarea>
<input type="file" name="fileupload" value="fileupload" id="fileupload">
<label for="fileupload"></label>
<input class="submit-button" type="submit" value="Postar">
</form>
</div>
</section>
</head>
<script src="js/main.js"></script>
</body>
</html>