If I want to put a link to one of my projects in the Project section of my code, where do I put it exactly?
https://codepen.io/hopefulcodegirl/pen/PoPVOgv
Also, I would appreciate some feedback! Thank you!
If I want to put a link to one of my projects in the Project section of my code, where do I put it exactly?
https://codepen.io/hopefulcodegirl/pen/PoPVOgv
Also, I would appreciate some feedback! Thank you!
Oh, and how do I make the welcome-section’s height equal to that of the viewport’s?
The navbar should always be at the top of the viewport.
What about this? I can’t understand what they are asking for.
Please guys! I got nothing else to do during this plan-demic but think about my stressful code or wonder how the government is going to find a vaccine for COVID-19 when they haven’t even found a virus for the common cold(relatives)!
I need some help with my code so I can just get it out of the back of my mind!
for the future, people tend to look to threads that do not have answers first, if you answer yourself multiple times your thread has already multiple answers
for the links, you probably need to have the link a direct child of the project-tile
element
for the viewport, the height should always be that one, so maybe review the relative units
I’m sorry. I do not understand your message I am fairly new to coding. Could you make the above message a little simpler?
direct child means that it is directly inside an element, and not inside an element that is inside that element
<div>
<p> I am a direct child of the div</p>
<ul>
<li> I am not a direct child of the div </li>
</ul>
</div>
and relative units are taught inside the curriculum: %, vh, vw, rem, em…
that one user story expects you to use one of these
Ohhh, okay. Thank you. I’m am still a little confused, but then again, I just got up.
Arghhh! I forgot how to write a link!
I start with <link href="" ect. right? But how do I make it show in my console?
nope, it is the anchor tag (<a>
) you want
remember you can always check back on the curriculum or google stuff
Thank you. I am just in my morning haze. I probably will get it soon.
ok, first remember that the link
tag in html is used to import stuff, not to create text links, for that you need the a
tag
syntax errors:
due to how codepen is set up, all the metadata and stuff you would put in the head
, goes in the pen settings, so you should remove these two from the HTML box:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
You instead put them in the header
tag, which is one of the many semantic elements you can have, and should contain stuff for the visual header of the page
Thank you very much! I will start working on that right after my breakfast!
Okay! i got the link in and removed the link and meta tag! One step closer to success!
seeing you opened a new account about he viewport I will answer you here
have you looked up relative units? specifically vh and vw
you have set your welcome-section to be exactly 750px last time I looked at your project. Instead it needs to be always equal to the viewport, which is a value that changes