Jul 13, 2024
website.html
<button>Hello</button>
<p>Paragraph of text</p>
<button>
and <p>
tags<tag>Content</tag>
)href
for links, src
for images<a href="https://youtube.com">Link to YouTube</a>
<a href="https://youtube.com" target="_blank">Link to YouTube</a>
<style>
tagsbackground-color
color
border
width
, height
button {
background-color: red;
color: white;
}
.subscribe-button {
background-color: red;
color: white;
border: none;
height: 50px;
width: 100px;
}
static
, fixed
, absolute
, relative
<header>
, <footer>
, <section>
, and <article>
@media (max-width: 600px) {
.container {
flex-direction: column;
}
}
padding: 10px 15px 10px 15px; /* top right bottom left */
border: 1px solid #000; /* width style color */
Happy coding! 😊