style= "width 100px; height 200px;"> Hello! Welcome to my wedsite! I am vary new to trying to make all of this, so its a bit of a mess, but I am trying to learn. I hope to make this a catalog of everything I love. Art, games, sheep, theator, and more I will think of as I go.
/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your HTML content. To learn how to do something, just try searching Google for questions like "how to change link color." */ body { background-image: url(BackkkkkkkkkkkGrounddddddd.png); color: black; font-family: Garamond; } .center_text{ Text-align:center; } .center_img{ display: block; margin: auto; width: 100%; } .banner{ width:100; display: block; } .banner > .banner-image { width:100; display: block; } #header { width: 70%; background-color: #5e4e8c; /* header color here! */ height: 200px; /* this is only for a background image! */ /* if you want to put images IN the header, you can add them directly to the
element! */ background-image: url('Headddderrrrrr.png'); background-size: 100%; margin: 0 auto; } /* navigation section!! */ #navbar { height: 100px; background-color: #FFD801; /* navbar color */ width: 100%; } #navbar ul { display: flex; padding: 0; margin: 0; list-style-type: none; justify-content: space-evenly; } #navbar li { padding-top: 13px; } /* navigation links*/ #navbar li a { color: #000000; /* navbar text color */ font-size: 50px; text-decoration: none; /* this removes the underline */ } /* navigation link when a link is hovered over */ #navbar li a:hover { color: #E75700; text-decoration: underline; } #headerr { width: 70%; background-color: #5e4e8c; /* header color here! */ height: 200px; /* this is only for a background image! */ /* if you want to put images IN the header, you can add them directly to the element! */ background-image: url('Chain thing part five.png'); background-size: 100%; margin: 0 auto; } */ #leftSidebar { order: 1; } #rightSidebar { order: 3; } footer { background-color: #13092D; /* background color for footer */ width: 100%; height: 40px; padding: 10px; text-align: center; /* this centers the footer text */ } h1, h2, h3 { color: #ED64F5; } h1 { font-size: 25px; } strong { /* this styles bold text */ color: #ED64F5; } /* this is just a cool box, it's the darker colored one */ .box { background-color: #13092D; border: 1px solid #ED64F5; padding: 10px; } /* CSS for extras */ #topBar { width: 100%; height: 30px; padding: 10px; font-size: smaller; background-color: #13092D; } /* BELOW THIS POINT IS MEDIA QUERY */ /* so you wanna change the width of your page? by default, the container width is 900px. in order to keep things responsive, take your new height, and then subtrack it by 100. use this new number as the "max-width" value below */ @media only screen and (max-width: 800px) { #flex { flex-wrap: wrap; } aside { width: 100%; } /* the order of the items is adjusted here for responsiveness! since the sidebars would be too small on a mobile device. feel free to play around with the order! */ main { order: 1; } #leftSidebar { order: 2; } #rightSidebar { order: 3; } #navbar ul { flex-wrap: wrap; } } @font-face { font-family: Courier New; src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf'); } @font-face { font-family: Courier New; src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf'); font-weight: bold; } @font-face { font-family: Courier New; src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf'); font-style: italic; } @font-face { font-family: Courier New; src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf'); font-style: italic; font-weight: bold;