Users are able to:
- See hover states for interactive elements
- Live Site URL: Live site
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- Mobile-first workflow
- Styled Components - For styles
I learned HTML, CSS and JAVASCRIPT
My favorite tags in HTML
<h1>Some HTM heading</h1>
<h2>Some HTM heading</h2>
<h4>Some HTM heading</h4>
<div>Some HTM contents</div>
.favorite-css-properties{
color: crimson;
display:flex;
transform: scale(0.02);...
}
const favoriteFunc = (name) => {
const me = "haryor dev"
if(name === me){
return alert("Welcome" + name + "to coding world")
}
return ("Hey!" + name + "are you a programer?")
}