-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #382 from veritocapito/main
ej HTML semantico
- Loading branch information
Showing
3 changed files
with
143 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="./styles.css"> | ||
<title>Veronica Capobianco</title> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
<h1>Veronica Capobianco</h1> | ||
<h2>FrontEnd Developer / Buenos Aires - Argentina</h2> | ||
</header> | ||
<main> | ||
<h3>Sobre mi</h3> | ||
<figure> | ||
<img src="./profile.png" alt="imagen de perfil" width="200"> | ||
</figure> | ||
<ul> | ||
<li>🌱 Actualmente me estoy capacitando en <strong>Javascript, React and Nodejs</strong></li> | ||
<li>📫 Escribime a <a href="mailto:[email protected]">[email protected]</a></li> | ||
<li>✨Conecta conmigo aquí: <a | ||
href="/https://linkedin.com/in/vscapobianco">linkedin.com/in/vscapobianco</a></li> | ||
</ul> | ||
</main> | ||
<section> | ||
<h3>Proyectos</h3> | ||
<p>👨💻 Todos mis trabajos estan disponibles en mi | ||
<a href="https://portfolio-workertech.vercel.app/">Portfolio</a> | ||
</p> | ||
</section> | ||
<section> | ||
<h3>Dejame tu mensaje</h3> | ||
<form id="contact_form"> | ||
<div class="row"> | ||
<label class="required" for="name">Nombre:</label> | ||
<input id="name" class="input" name="name" type="text" /> | ||
<span id="name_validation" class="error_message"></span> | ||
</div> | ||
<div class="row"> | ||
<label class="required" for="email">Email:</label> | ||
<input id="email" class="input" name="email" type="text" /> | ||
<span id="email_validation" class="error_message"></span> | ||
</div> | ||
<div class="row"> | ||
<label class="required" for="message">Mensaje:</label> | ||
<textarea id="message" class="input" name="message" rows="7" cols="30"></textarea> | ||
<span id="message_validation" class="error_message"></span> | ||
</div> | ||
|
||
<input id="submit_button" type="submit" value="Enviar mensaje" class="btn" /> | ||
</form> | ||
</section> | ||
<footer> | ||
<p>2024 - @veritocapito</p> | ||
</footer> | ||
|
||
</body> | ||
|
||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
body { | ||
max-width: 600px; | ||
margin: 0 auto; | ||
background: #313132; | ||
color: #cebebe; | ||
font-family: monospace; | ||
font-size: 14px; | ||
} | ||
|
||
*{ | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
h1{ | ||
font-size: 48px; | ||
color: chartreuse; | ||
} | ||
|
||
h2 { | ||
font-style: italic; | ||
} | ||
|
||
h3{ | ||
color: yellowgreen; | ||
font-size: 20px; | ||
} | ||
|
||
main, section{ | ||
padding: 50px 0; | ||
} | ||
|
||
a{ | ||
text-decoration: none; | ||
color: yellowgreen; | ||
} | ||
|
||
p { | ||
line-height: 1.5; | ||
} | ||
|
||
figure, form{ | ||
max-width: 300px; | ||
padding: 50px 0; | ||
margin: 0 auto; | ||
} | ||
|
||
input, textarea{ | ||
width: 100%; | ||
padding: 8px; | ||
margin: 10px 0; | ||
background-color: #cebebe; | ||
border-radius: 5px; | ||
border: none; | ||
} | ||
|
||
textarea{ | ||
resize: none; | ||
} | ||
|
||
.btn{ | ||
cursor: pointer; | ||
background-color: yellowgreen; | ||
font-weight: bold; | ||
color: #313132; | ||
border: none; | ||
} | ||
|
||
.btn:hover{ | ||
opacity: 0.8; | ||
} | ||
|
||
footer{ | ||
text-align: center; | ||
padding: 8px; | ||
color: yellowgreen; | ||
} | ||
|
||
|
||
|