-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) · 1.39 KB
/
index.html
File metadata and controls
48 lines (45 loc) · 1.39 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
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta http-equiv="cache-control" content="no-cache">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Resolution</title>
<meta name="description" content="Veja seu site em diferentes resoluções de tela!">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/all.css">
<link rel="stylesheet" href="styles/style.css">
<link rel="icon" href="imgs/icon.jpg">
</head>
<body>
<header>
<nav>
<ul>
<li>
<i class="fa fa-tv"></i>
<i class="fa fa-desktop"></i>
<i class="fa fa-laptop"></i>
<select id="desktop"></select>
</li>
<li>
<i class="fa fa-mobile-alt"></i>
<select id="mobile"></select>
</li>
<li>
<input id="campoL" type="number" placeholder="Largura">
<input id="campoH" type="number" placeholder="Altura">
<button id="btnSize">Ok</button>
</li>
</ul>
</nav>
</header>
<div>
<div id="campoDL">
<input id="campoURL" type="text" placeholder="Digite o link: https://...">
<button id="btnURL"><i class="fa fa-search"></i></button>
</div>
</div>
<iframe id="janela" src="" frameborder="0"></iframe>
<script src="main.js"></script>
</body>
</html>