For this workshop I got to apply my new found html power with css theory. For context I have learned basic css syntax and some attributes such as
.Class {
selects all class
}
#ID {
selects id
}
h1 {
selects all h1
}
h1, h2, p {
selects all h1, h2, and p elements
}
h1 h2 {
selects h2
}
h1 ~ h2 {
selects all fallowing h2
}
along with learning how to select elements for styling there’s the actual styling part, things like margin, padding, color, background-color, font-family, and max-width. also side note I thought icons were a special thing but apparently no its just an img element.
body {
font-family: sans-serif;
}
section {
margin: 50px;
padding: 15px;
max-width: 500px;
background-color: blue;
}
p {
color: orange;
}
and with all that in my brain I was able to fallow the instructions exactly to make this… bye bye
Edit: the custom html code broke the main page of my website so I had to make some modifications mostly specifying that everything being styled had to be a child of the menu class it made all the text on my main website black on black aka impossible to read so that was interesting.








