Skip to content

Conversation

@majaengberg02
Copy link

Copy link

@julialindstrand julialindstrand left a comment

Choose a reason for hiding this comment

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

The website looks great! I like the colors and the overall purpose of the website. You should be really proud! The code was easy to read and interpret. I like that you made a folder for the images, it made it clean. I couldn't find anything that's "wrong" but made a few notes of small things. It's a really good first project. Celebrate!

Comment on lines 22 to 35
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="30"
viewBox="0 0 24 22"
fill="none"
stroke="#2446C2"
stroke-width="3"
stroke-linecap="round"
stroke-linejoin="round">
<line x1="3" y1="13" x2="21" y2="13"></line>
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="20" x2="21" y2="20"></line>
</svg>

Choose a reason for hiding this comment

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

What is svg? Never heard of it before

Copy link
Author

Choose a reason for hiding this comment

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

SVG is a typ of vector based graphic. They don't use pixels, unlike images, so they dont lose quality when you zoom in or rescale them.

index.html Outdated
<section>
<div class="hero-container">
<img class="hero-image"
src="Images/lum3n-DwDCTnlp-V4-unsplash.jpg"

Choose a reason for hiding this comment

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

Maybe change the names on the images so it's easier to know what it is in the code

Choose a reason for hiding this comment

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

Good comments above the sections so it's easy to see what's what!

</section>

<div class="view-all-button">
<a href="#adopt">View All Pets</a>

Choose a reason for hiding this comment

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

Maybe just a preference but I think this would look best in all upper or lower case :)

Comment on lines +10 to +52
h1 {
color: #2446C2;
font-family: "Rock Salt", cursive;
font-size: x-large;
}

h2 {
color: #2446C2;
font-family: "Roboto", sans-serif;
font-size: xxx-large;
margin-top: 10px;
margin-bottom: 2px;
}

h3 {
color: black;
font-family: "Roboto", sans-serif;
font-size: x-large;
text-decoration: line-through #2446C2;
margin-top: 10px;
margin-bottom: 20px;
}

h4 {
color: #2446C2;
font-family: "Roboto", sans-serif;
font-size: xx-large;
margin: 10px 0 5px 0;
}

h5 {
color: #2446C2;
font-family: "Roboto", sans-serif;
font-size: large;
margin: 10px 0 10px 0;
}

p {
color: black;
font-family: "Roboto", sans-serif;
font-size: medium;
margin: 0;
}

Choose a reason for hiding this comment

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

Really smart to have all the text-edits gathered!

justify-content: center;
}

.hero-text h3 {

Choose a reason for hiding this comment

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

What is the difference between this h3 and the one called h3?

style.css Outdated
flex-direction: column;
align-items: center;
width: 100%;

Choose a reason for hiding this comment

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

Maybe remove this row if it's not something that's gonna be here

Comment on lines +290 to +291
input,
textarea {

Choose a reason for hiding this comment

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

I've never made a textarea, is it suppose to be written like this?

Copy link
Contributor

@HIPPIEKICK HIPPIEKICK left a comment

Choose a reason for hiding this comment

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

It seems like you’ve tried to implement a Google Font (Roboto). Make sure to follow the instructions on the Google Font website and link it. + It would be nice if the buttons also got this font 😇

You’ve managed well with the layout and the JavaScript works as expected too! Keep it up 👍

index.html Outdated


<div class="contact-form" id="contact">
<form action="http://httpbin.org/anything" method="POST">
Copy link
Contributor

Choose a reason for hiding this comment

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

Make sure to use the https method, as some browser will otherwise block this action

index.html Outdated
Comment on lines 151 to 156
required
type="text"
id="name"
name="name"
placeholder="Name"
style="width: 100%;">
Copy link
Contributor

Choose a reason for hiding this comment

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

Remember indentation

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.

3 participants