-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaula1.4.html
More file actions
30 lines (23 loc) · 1015 Bytes
/
aula1.4.html
File metadata and controls
30 lines (23 loc) · 1015 Bytes
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<!-- Todo projeto responsivo precisa ter a meta tag viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Layout Responsivo</title>
<!--
Celular
<link rel="stylesheet" href="css/aula14-celular.css" media="screen and (max-width: 600px)">
Tablet
<link rel="stylesheet" href="css/aula14-tablet.css" media="screen and (min-width: 601px) and (max-width: 1024px)">
Computador
<link rel="stylesheet" href="css/aula14-desktop.css" media=" screen and (min-width: 1025px)">
Media Queries:
Nome dado as requisiçoes de determinados estilos, somente quando atender ás condições, geralmente de largura de tela.
Breaking Point:
É a mudança de estilo em determinada largura de tela.
-->
<link rel="stylesheet" href="css/aula14.css" />
</head>
<body></body>
</html>