Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tetet #37

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# projeto-site
Projeto de um site criado durante o curso de Git e GitHub
# projeto-oficina-git
Projeto de um site criado para a oficina de Git, GitHub, GitLab e GitPages
aoba 👍

24 changes: 0 additions & 24 deletions curso-html.html

This file was deleted.

23 changes: 0 additions & 23 deletions curso-js.html

This file was deleted.

73 changes: 47 additions & 26 deletions estilos/style.css
Original file line number Diff line number Diff line change
@@ -1,42 +1,63 @@
* {
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
padding: 0%;
background-color: #012f19;
}

body {
background-color: #acacff;

main{
flex: auto;
justify-content: center;
justify-items: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
flex-direction: column;
align-content: center;
align-items: center;
text-align: center;
display: flex;
flex-direction: column;
}

main {
background-color: white;
width: 560px;
margin: auto;
padding: 10px;
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.473);
header h1{
font-family: "Comfortaa", Helvetica, sans-serif;
font-size: 30px;
font-style: normal;
font-weight: bold;
color: rgb(255, 255, 255);
}

h1 {
font-size: 2em;
color: rgb(58, 0, 112);
h1{
font-family: "Luckiest Guy", Helvetica, sans-serif;
font-size: 60px;
font-style: normal;
color: rgb(255, 255, 255);
}

h2 {
font-size: 1.5em;
color: rgb(58, 0, 112);
h3{
font-family: "Comfortaa", Helvetica, sans-serif;
font-size: 30px;
font-style: normal;
font-weight: bold;
color: rgb(255, 255, 255);
}

img.lado {
float: right;
.img{
flex: auto;
justify-content: space-around;
justify-items: center;
flex-direction: row;
align-content: center;
align-items: center;
text-align: center;
display: flex;
flex-direction: row;
}

a {
text-decoration: none;
font-weight: bold;
color: rgb(58, 0, 112);
.exception{
width: 20%;
}

a:hover {
text-decoration: underline;
color: rgb(26, 26, 255);
.facsi{
width: 40%;
}
Binary file removed imagens/btn-back.png
Binary file not shown.
Binary file removed imagens/curso-em-video-cor.png
Binary file not shown.
Binary file removed imagens/curso-em-video-pb.png
Binary file not shown.
Binary file removed imagens/curso-html-css.png
Binary file not shown.
Binary file removed imagens/curso-javascript.png
Binary file not shown.
Binary file added imagens/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions imagens/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 16 additions & 15 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,29 +1,30 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:[email protected]&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:[email protected]&family=Luckiest+Guy&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Curso em Vídeo</title>
<title>Oficina de Git!!!</title>
<link rel="stylesheet" href="estilos/style.css">
</head>
<body>
<main>
<header>
<h1>Cursos Grátis</h1>
<img src="imagens/curso-em-video-cor.png" alt="Curso em Vídeo">
<h1>Oficina de Git, GitHub, GitLab e GitPages</h1>
</header>
<article>
<h2>Curso de HTML5 com CSS3</h2>
<img class="lado" src="imagens/curso-html-css.png" alt="Curso HTML">
<p>A <abbr title="HyperText Markup Language">HTML</abbr> é uma linguagem de marcação para a criação de sites. Atualmente na versão 5, ela usa a semântica dos elementos para criar o conteúdo de uma página Web. Com as <abbr title="Cascading Style Sheets">CSS</abbr>, criamos as configurações visuais que um site vai ter.</p>
<p><a href="curso-html.html">Acesse o curso de HTML5</a></p>
</article>
<article>
<h2>Curso de JavaScript</h2>
<img class="lado" src="imagens/curso-javascript.png" alt="Curso JS">
<p><abbr title="JavaScript">JavaScript</abbr> é uma linguagem de script criada para aumentar a interatividade entre um site e seus visitantes. Os códigos em JS são executados dentro do navegador e dão acesso aos elementos HTML por meio do <abbr title="Document Object Model">DOM</abbr>.</p>
<p><a href="curso-js.html">Acesse o curso de JavaScript</a></p>
</article>
<div>
<h1>Bem Vindos!!!</h1>
<div class="img">
<img class="exception" src="imagens/logo.svg" alt="Exception">
<img class="facsi" src="imagens/logo.png" alt="Exception">
</div>
<h3>Bazinga!!!</h3>
</div>
</main>
</body>
</html>