-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
21 lines (21 loc) · 859 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="cev-02.ico" type="image/x-icon">
<link rel="stylesheet" href="estilos/style.css" media="all">
<link rel="stylesheet" href="estilos/media-query.css">
<title>Media Query</title>
</head>
<body>
<main>
<h1>Testando Media Queries</h1>
<img id="phone" src="imagens/icon-phone.png" alt="Acessando via smartphone">
<img id="tablet" src="imagens/icon-tablet.png" alt="Acessando via tablet">
<img id="print" src="imagens/icon-print.png" alt="Versão para impressão">
<img id="pc" src="imagens/icon-pc.png" alt="Versão para desktop">
<img id="tv" src="imagens/icon-tv.png" alt="Versão para TV">
</main>
</body>
</html>