Skip to content
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

Kathalin's Project #46

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Kathalin's Project #46

wants to merge 2 commits into from

Conversation

KathalinS
Copy link

i am trying to create a website for a friend who wants to start her own business in tattooing. For this I have created a menu bar, a small image gallery (unfortunately did not have more pictures) and have made the menu clickable, but is linked for now only on instagram

Copy link

@esteficodes esteficodes left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🌈Your site is starting to look very nice! 😀. Remember to mind the indentation so that your code looks always neat, clear and organized. I see in your comment that you still have to work on the remaining links, but navigation your site, the one to instagram works ok.
Don't forget to erase any files: images, comments etc. that you don't need in your code once you are done.
On a next step it would be a good idea to add some media queries so that your site is responsive and looks beautiful on every screen size. You can read a little bit more about this on this link. Don't forget to start designing always from mobile display, as it's nowadays everybody's first choice.Good job so far! ✨✨

@@ -1,21 +1,44 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi! Nice to meet you! I'm Estefanía and I'll be taking a look at your code today. 👋😀

Comment on lines +14 to +19
<ul>
<li><a href="#">/art work</a></li>
<li><a href="#">/tattoo art</a></li>
<li><a href="#">/about</a></li>
<li><a href="https://instagram.com/jessy.vagabunda?utm_medium=copy_link">/insta</a></li>
</ul>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Be careful with indentation here. 🔍 The rule to follow is that if there's a new block, then you indent one more level. At Technigo, we use 2 spaces for indentation. The list's closing tag should be in line with its opening tag. 🙂

Comment on lines +28 to +36
<div class="grey-box">
<h2>somewhere between paper an skin</h2>
<style>
img {
max: fullscreen;
height: auto;
}
</style>
</div>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mmhh, looks like the styling for this image is broken or something is missing because the editor doesn't acknowledge the property "fullscreen". Also: maybe it would be a good idea to place all of your styling in the css file? 🙂


body {
background-color: lightblue;
.receipt { font-family: Courier, "Lucida Console", monospace }

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your code will look neater if you write it like this:

.receipt {
font-family: Courier, "Lucida Console", monospace;
}

And don't forget the semicolons at the end of css statements. ✔️

Comment on lines +6 to +9
list-style-type: none;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: auto;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nicely done using grid!

Comment on lines +12 to +16
nav ul li a:hover, nav ul li a:focus {
color: black;
background-color: white;
font-weight: bold;
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cool hover effect on that nav menu.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants