Skip to content

Commit a21beba

Browse files
committed
começo do projeto
0 parents  commit a21beba

File tree

3 files changed

+58
-0
lines changed

3 files changed

+58
-0
lines changed

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Tópicos Importantes
2+
3+
4+
## HTML
5+
- Estrutura Básica do HTML
6+
- html, head, title, body
7+
- style
8+
- Tags de Texto: h1...h6, p
9+
- Destaque do Texto: b, i, span
10+
11+
12+
## CSS
13+
- Externo, Interno e In-line
14+
- Sintaxe do código css
15+
16+
17+
## Comandos Git
18+
19+
- git -v (verifica a versão do git)
20+
// configura Nome e Email para realizar os commits
21+
- git config --global user.name "Renan Cavichi"
22+
- git config --global user.email "renancavichi@gmail.com"
23+
- git init (inicia o git em um projeto ou pasta)

css/style.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
body {
2+
background-color: #aae0ed;
3+
}
4+
5+
h1 {
6+
color: #234234;
7+
background-color: #1b5b16;
8+
}
9+
10+
span {
11+
color: #04047d;
12+
}

index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<html>
2+
<head>
3+
<title>Olá Mundo HTML!</title>
4+
<link rel="stylesheet" href="css/style.css" />
5+
<style>
6+
h1 {
7+
color: #af29c3;
8+
}
9+
</style>
10+
</head>
11+
<body>
12+
<h1 style="color: #d7a121">Olá Mundo!</h1>
13+
<h1>Olá Mundo!</h1>
14+
<h1>Olá Mundo!</h1>
15+
<h2>Olá Mundo!</h2>
16+
<h3>Olá Mundo!</h3>
17+
<h4>Olá Mundo!</h4>
18+
<h5>Olá Mundo!</h5>
19+
<h6>Olá Mundo!</h6>
20+
<p><b>HTML</b> (abreviação para a expressão inglesa HyperText Markup Language, que significa: "Linguagem de Marcação de <i>Hipertexto</i>") é uma linguagem de marcação utilizada na construção de páginas na Web. Documentos HTML podem ser interpretados por navegadores. A <span style="color: #876867;">tecnologia</span> é fruto da junção entre os padrões HyTime e SGML.</p>
21+
<p>HyTime é um padrão para a representação estruturada de hipermídia e conteúdo baseado em tempo. Um documento é visto como um conjunto de eventos concorrentes dependentes de tempo (como áudio, vídeo, etc.), conectados por hiperligações (em inglês: hyperlink e link). O padrão é independente de outros padrões de processamento de texto em geral.</p>
22+
</body>
23+
</html>

0 commit comments

Comments
 (0)