-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (33 loc) · 1.44 KB
/
index.html
File metadata and controls
39 lines (33 loc) · 1.44 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Mulish&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link href="css/all.css" rel="stylesheet">
<title>Meetmaps Application </title>
</head>
<body>
<div class="main-container">
<div class="main-container-header">
<div class="round red"></div>
<div class="round orange"></div>
<div class="round green"></div>
<i class="fas fa-expand-alt" id="enlargeBtn" title="Ampliar ventana"></i>
</div>
<form action="" class="padding-10">
<input type="text" name="message-box" id="message-box" placeholder="Escribe una nota" autocomplete="off">
<div class="form-buttons-div">
<button id="submitMessageBtn" class="formBtn" type="submit" title="Enviar nota"><i class="fas fa-paper-plane"></i></button>
<button id="startOverMessageBtn" class="formBtn" type="submit" title="Comenzar de nuevo"><i class="far fa-trash-alt"></i></button>
</div>
</form>
<hr>
<div id="message-container" class="message-container padding-10">
<p class="first-note">Comienza a escribir tu primera nota!</p>
</div>
</div>
<script src="index.js"></script>
</body>
</html>