Html e Css Para Iniciantes Flashcards

1
Q

Qual a diferença entre o código case sensitive e case insentive?

A

case sensitive o código escrito com letra maiúscula é diferente do código escrito com letra minúscula, case insentive tanto faz se for escrito com letra maiúscula.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

<a> href = “https://google.com”>Google</a> explique o que é case sensitive e insensitive.

A

A tag <a> é insentive
O valor do link “https://google.com” é case sensitive</a>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Quais são as tags iniciais?

A

p - parágrafo
h1,h1,h3,h4,h5,h6 - título
h1 maior título e h6 menor título

a - link

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Escreva a estrutura HTML
Com título Curso HTML e no corpo usando a TAG de titulo maior Curso Html

A

<! DOCTYPE html>
< html>

<head>

< meta charset= "utf- 8" >
<title> Cursos de HTML</title>

</head>

<body>

< h1 > Cursos HTML< / h1 >

</body>

< /html >

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Explique a função;

1- <! DOCTYPE html>
2- < html>
3- <head>
4- <meta charset= “utf-8>
5- < title >
6- < body>

A

1- <! DOCTYPE html> versão HTML 5
2- < html> Tag raiz
3- <head> cabeçalho
4- < meta charset= “utf-8> para acento funcionar
5- < title > título

6- < body > corpo/conteúdo da página

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

O que é caminho absoluto e relativo?

A

Absoluto arquivos fora do site e Relativo dentro do site

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

< a href= “/produtos/bicicletas.html”>bicicletas<
/a >

< a href= “https: //www.origamid.com/cursos”>Origamid <
/a >

Qual é caminho relativo e absoluto?

A

< a href = “/produtos/bicicletas.html”>bicicletas</a
> é caminho relativo

< a href = “https: //www.origamid.com/cursos”>Origamid </a> é caminho absoluto

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Onde vai ser salvo /index.html, e o que significa a /?

A

Arquivo index.html do diretório raiz.
/ (a barra ) significa que o arquivo vai ser salvo do diretório raiz.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Onde vai ser salvo, /produtos/bicicletas?

A

Arquivo bicicletas.html no diretório produtos localizado na raiz

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Onde vai ser salvo Index.html ou ./Index.html?

A

Ele salva na pasta/diretório atual

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

onde vai ser salvo ../index.html?

A

diretório anterior ao atual

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Onde vai ser salvo ../../index.html?

A

Dois diretórios anteriores ao atual

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

O que é index.html?

A

Página padrão

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

O que é Pasta/Diretório Raiz?

A

Pasta principal que contém todas as outras

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

O que é URL?

A

Endereço eletrônico,serve para localizar um site

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

< link rel = “stylesheet” href= “ / style.css”/ >

A

link = cria uma relação entre um documento HTML e um arquivo CSS

rel define o tipo de arquivo

href define o caminho

17
Q

a {
color: black;
text - decoration: none;

}

Explique o que é cada item e o que cada um faz?

A

a é o seletor, seleciona o elemento a se estilizado

{} é o bloco engloba as propriedades que vão ser aplicadas

color: propriedade define o que será alterado

black; valor define o novo estilo