-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.3 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
<!DOCTYPE html>
<html lang="pt-br">
<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">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<header></header>
<main>
<section id="inputs" class="conteiner">
<input id="text-input" type="text" placeholder="text" maxlength="60">
<input id="meme-insert" accept="image/*" title="img" type="file">
</section>
<section class="conteiner border" id="meme-image-container">
<p id="meme-text"></p>
<img id="meme-image" src="" alt="meme-image">
</section>
<section id="buttons" class="conteiner">
<button class="button fire" id="fire">fire</button>
<button class="button water" id="water">water</button>
<button class="button earth" id="earth">earth</button>
</section>
<section id="examples" class="conteiner">
<img id="meme-1" class="img border" src="imgs/meme1.png" alt="">
<img id="meme-2" class="img border" src="imgs/meme2.png" alt="">
<img id="meme-3" class="img border" src="imgs/meme3.png" alt="">
<img id="meme-4" class="img border" src="imgs/meme4.png" alt="">
</section>
</main>
<script src="script.js"></script>
</body>
</html>