Breve descrição do projeto: o que é, qual problema resolve e por que é útil.
- -
Exemplo: Em desenvolvimento | Concluído | Em manutenção
body { | |
font-family: Arial, sans-serif; | |
margin: 0; | |
padding: 0; | |
line-height: 1.6; | |
} | |
header { | |
background-color: #f2f2f2; | |
text-align: center; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Seu Nome - Síndico Profissional</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<header> |
body { | |
font-family: Arial, sans-serif; | |
margin: 0; | |
padding: 0; | |
} | |
header { | |
background-color: #f2f2f2; | |
text-align: center; | |
padding: 20px; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Seu Nome - Síndico Profissional</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<header> |
body { | |
font-family: 'Montserrat', sans-serif; | |
background-color: #f2f2f2; | |
} | |
header { | |
background-color: #009933; /* Verde Brasil */ | |
color: white; | |
text-align: center; | |
padding: 20px; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Minha Landing Page de Futebol</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<header> | |
<h1>O Mundo do Futebol Brasileiro</h1> | |
<p>Sua paixão em um só lugar</p> |
async function conectarComApi() { | |
const conectaApi = await fetch("https://api.thecatapi.com/v1/images/search"); | |
const conectaApiConvertido = await conectaApi.json() | |
console.log(conectaApiConvertido); | |
} | |
conectarComApi(); |
img = new SimpleImage( "img/circulo.bmp" ); | |
img.setZoom( 20 ); | |
pixel = img.getPixel( 4, 0 ); | |
pixel.setRed( 255 ); | |
print(img); |
<?php | |
$array = ['foo' => 'bar']; | |
echo $array['bar'] ?? 'baz'; |