PROY100: Portfolio Page
🥳Lo logramos, este es el último desafío. Se requiere codificar una página de portafolio, usando HTML, CSS y JavaScript.
Un hermoso desafío para mejorar tus habilidades en HTML y CSS. Es una gran oportunidad para usar CSS Grid y la metodología BEM.
hover
sobre los botonestext-decoration
) decorado sobre las opciones del menúREADME.md
al proyecto y describe tu experiencia con el desafío.Merriweather: (https://fonts.google.com/specimen/Merriweather) Mulish: (https://fonts.google.com/specimen/Mulish)
body background: linear-gradient #FF7982, #FF8D53 container background: #F4F8FD button background: #linear-gradient #FF7982, #FF8D53 paragraph: #000000
Products Collections Gifts Our magazine Log In SIGN UP The gift of happiness Show your gratitude with one of our gift sets, large and small, specially designed to spread joy to someone you love. SHOP NOW Ready for autumn collection Treat yourself to some of our brand new autumn collection - all with the wonderful colours surrounding you. PURCHASE NOW Ready for autumn collection Treat yourself to some of our brand new autumn collection - all with the wonderful colours surrounding you. PURCHASE NOW
.container { display: flex; justify-content: center; align-items: center; }
.container { display: grid; place-items: center; }
.container{ position: absolute; top: 50%; left: 50%; margin-right: -50%; transform: translate(-50%, -50%); }
.circle { width: 2rem; aspect-ratio: 1 / 1; border-radius: 50%; border: 1px solid #333; background-color: #fb98f3; }
body { /* Sympathy */ background: linear-gradient(to right, #5a5bf3, #91e7d9); /* Pacific */ background: linear-gradient(to right, #8aedf6, #60a2f5); /* Butterfly */ background: linear-gradient(to right, #edaef9, #81b1fa); /* Cryptic */ background: linear-gradient(to right, #7ec9f5, #3957ed); /* Aqua */ background: linear-gradient(to right, #65f4cd, #4799e9); }
/* Mobile devices */ @media screen and (min-width: 375px) and (max-width: 480px) { /* Aquí los estilos */ } /* iPads, Tablets */ @media screen and (min-width: 481px) and (max-width: 768px) { /* Aquí los estilos */ } /* Small screens, laptops */ @media screen and (min-width: 769px) and (max-width: 1024px) { /* Aquí los estilos */ } /* Desktops, large screens */ @media screen and (min-width: 1025px) and (max-width: 1200px) { /* Aquí los estilos */ }
meta
para mejorar el SEO:<meta name="author" content="Nombre del autor"> <meta name="title" content="Título del proyecto"> <meta name="description" content="Breve descripción del contenido del proyecto">
🧑🚀”La mejor manera de aprender a programar es practicando todos los días”.