This file contains hidden or 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
body{ | |
font-family: 'Roboto Mono'; | |
background-color: #f4f4fb; | |
font-weight: 300; | |
color: #1c2366; /* this will be the color of the text, not the color of the background. */ | |
} | |
h1{ | |
font-family: 'Changa'; | |
color: #D0EA00; |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>{ YOUR_WEBSITES_NAME }</title> | |
</head> | |
<body> | |
<img src="images/{ your_image.png }" alt="{ YOUR NAME }"> | |
<h1>{ YOUR_NAME [YOUR FAVORITE EMOJI 👩🏻🎤] }</h1> |
This file contains hidden or 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
<head> | |
[...] | |
<!-- aquí es donde también agregarías el link de Google Fonts para obtener sus fonts en tu página y el link al resto de los recursos externos que utilizaremos --> | |
<link href='style.css' rel='stylesheet'> | |
</head> |
This file contains hidden or 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
<body> | |
<div id="banner"> | |
<img src="images/img.png" alt="{ tu_nombre }" class='my-img'> | |
<h1>{ TU_NOMBRE [tu_emoji_favorito 🤪] }</h1> | |
<h4>{ la_linea_que_mas_se_lee} </h4> | |
<a href="mailto:{ [email protected] }">Contáctame</a> | |
</div> | |
<ul class="social-media white-box"> | |
<li><a href="#">Twitter</i></a></li> | |
<li><a href="#">Instagram</a></li> |
This file contains hidden or 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
#banner{ | |
background-size: cover !important; /* `!important` se asegura de que esta regla se cumpla 100% de las veces */ | |
padding: 50px; | |
background: linear-gradient(-225deg, rgba(0,101,168,0.6) 0%, rgba(0,36,61,0.6) 50%), url(images/banner-jch.png); /* esto es lo que le da el gradiente encima y le posiciona la imagen del banner */ | |
background-color: #1c2366; | |
} | |
#banner a{ | |
margin: 15px; /* ayuda a separar el link del resto del texto. al no pasarle una posición, pone 15px en top + bottom + left + right */ | |
} |
This file contains hidden or 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
<head> | |
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous"> | |
</head> |
This file contains hidden or 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
<head> | |
[...] | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |
<link href='style.css' rel='stylesheet'> | |
</head> |
This file contains hidden or 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
<div class="container"> | |
<div class="row"> | |
<div class="col-xs-12 col-sm-6 col-md-3"> | |
<!-- div class="card" --> | |
</div> | |
<div class="col-xs-12 col-sm-6 col-md-3"> | |
<!-- div class="card" --> | |
</div> | |
<div class="col-xs-12 col-sm-6 col-md-3"> | |
<!-- div class="card" --> |
OlderNewer