-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cheetahs - Ariam Y. #111
base: master
Are you sure you want to change the base?
Cheetahs - Ariam Y. #111
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great job, Ariam! ✨
This website sparked a lot of joy! Your semantic HTML is clear and you squeezed in three website styles in one project. Great work going above and beyond, I think you and CSS will have a beautiful future ahead! This project is a Green. 🟢
Keep it up! 💯
display: grid; | ||
grid-template-columns: 20% auto 20%; | ||
grid-template-rows: .5fr 1fr .25fr; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fantastic use of grid
!
.tags li:nth-of-type(1) { | ||
background-color: royalblue; | ||
} | ||
|
||
.tags li:nth-of-type(2) { | ||
background-color: orange; | ||
} | ||
|
||
.tags li:nth-of-type(3) { | ||
background-color: mediumvioletred; | ||
} | ||
|
||
.tags li:nth-of-type(4) { | ||
background-color: teal; | ||
} | ||
|
||
.tags li:nth-of-type(5) { | ||
background-color: purple; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome! ✨
display: flex; | ||
flex-direction: column-reverse; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great use of flexbox to align this header image! 💯
text-align: center; | ||
font-weight: 300; | ||
color:lavender; | ||
background-color:whitesmoke |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't forget your ending semicolons! 😉
<a href="file:///Users/ariamyonas/Developer/projects/personal-portfolio-site/pages/index.html">Home</a> | ||
<a href="file:///Users/ariamyonas/Developer/projects/personal-portfolio-site/pages/portfolio.html">Portfolio</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To make these hyperlinks accessible to other folks who pull up your code, we can access them by their relative path, like this:
<a href="index.html">Home</a>
<a href="portfolio.html">Portfolio</a>
<footer> | ||
<nav id ='footer-nav'> | ||
<ul class = 'footer-tags'> | ||
<li><a href = 'https://github.com/arusphere'>GitHub</a></li> | ||
<lil><a href = 'https://www.linkedin.com/in/ariam-y-5a8ab4134/'>LinkedIn</a></lil> | ||
<lil><a href = '[email protected]'>Email</a></lil> | ||
</ul> | ||
</nav> | ||
</footer> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Beautiful footer! 🌹
Personal Portfolio Site
Congratulations! You're submitting your assignment!
Comprehension Questions