-
Notifications
You must be signed in to change notification settings - Fork 91
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
Hand in Project 1 #66
base: master
Are you sure you want to change the base?
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.
Thanks for sharing your project, it looks super! I made some small comments on things you can think about going forward, but I think you did a good job so keep it up 👍
<div class="navigationLink"> | ||
<div class="navElement"> | ||
<a id="nav1" class="navigationLink" href="./index.html">Home</a> | ||
</div> | ||
<div class="navElement"> | ||
<a id="nav2" class="navigationLink" href="./projects.html">Projekte</a> | ||
</div> | ||
<div class="navElement"> | ||
<a id="nav3" class="navigationLink" href="./contactme.html">Contact</a> | ||
</div> |
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.
These elements doesn't belong in the head. All content except meta content should be in the body :)
<div>Digital Product Management Assistant</div> | ||
<div>Studentin BSc Informatik - iCompetence</div> | ||
</h2> |
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.
Instead of having divs inside the h2, you could achieve the same result by having two h2s
|
||
<div class="pictureofmyself"> | ||
<img class="me" src="./img/IMG_8272.jpg" alt="A picture of Tamira"/> |
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.
Good with alt tags!
|
||
</div> | ||
<a href="#top" class="top">Back to top🔼</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.
Nice little feature 👍
@@ -1,5 +1,279 @@ | |||
/* Here in the css file you'll write your styling. make sure to link the css file to the html file. If it's linked correctly you should see a light blue background. */ | |||
@media (max-width: 668px) { |
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.
We usually start with the default styling and then put the media queries further down.
background-image: url("./img/ReUse.jpg"); | ||
background-size: cover; | ||
} | ||
#I\ follow\ you{ |
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.
Is this an id? It looks broken
} | ||
|
||
|
||
.berufsEintrag { |
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.
Class names and ids should actually all be in English
padding: 10px; | ||
margin: 20px; | ||
border-radius: 20px; | ||
box-shadow: 0 0 10px rgba(5, 48, 140, 0.3); |
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.
I love this! 🙌
No description provided.