PROY100: Portfolio Page
🥳Lo logramos, este es el último desafío. Se requiere codificar una página de portafolio, usando HTML, CSS y JavaScript.
Prepárate para codificar este diseño hermoso de una Landing Page para Oracle. Es una gran oportunidad para poner a prueba y mejorar tus habilidades en HTML y CSS.
text-decoration
) sobre las opciones del menú.hover
sobre los botones.README.md
al proyecto y describe tu experiencia con el desafío.Montserrat: (https://fonts.google.com/specimen/Montserrat)
body background: #EEF1FC card background: #FFFFFF button background: #597FE2 footer background: #E2E7FA menu options: #13274F text body: #000000
Color Oracle How To Manual Design Tips Useful Links Design for the color impaired Color Oracle is a free color blindness simulator for Windows, Mac and Linux. It takes the guesswork out of designing for color blindness by showing you in real time what people with common color vision impairments will see. Download for Mac Download for Windows Requires Java 6 or higher Download for Linux Requires Java 6 or higher About Development: Bernie Jenny, Monash University, Australia. Ideas, testing and icon: Nathaniel Vaughn Kelso, California. Feedback Color Oracle is a work in progress and will improve with time and your input. Please share your Color Oracle testimonial with us and send us an email. Source Color Oracle is open source, available on GitHub for Mac and Windows/Java. © 2006–2018 by Bernie Jenny, Monash University, Melbourne, Australia. Last site update: 5 May 2018.
.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"> <meta name="keywords" content="Palabra clave 1, Palabra clave 2, Palabra clave 3">
Hola Frontend Club, Acabo de completar el proyecto #. Mi solución: Página web: https://profile-card.netlify.app/ Repositorio: https://github.com/01-day-profile-card.git
La mejor forma de escribir buen código es practicando todos los días⚡