You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basic HTML Structure and Elements and Attributes, Classes and IDs
<!DOCTYPE html><htmllang="en"><head><metacharset="UTF-8" /><metaname="viewport" content="width=device-width, initial-scale=1.0" /><linkhref="style.css" rel="stylesheet" /><title>Learning HTML & CSS</title></head><body><h1>JavaScript is fun, but so is HTML & CSS!</h1><pclass="first">
You can learn JavaScript without HTML and CSS, but for DOM manipulation
it's useful to have some basic ideas of HTML & CSS. You can learn more
about it
<ahref="https://www.udemy.com/user/jonasschmedtmann/">on Udemy</a>.
</p><h2>Another heading</h2><pclass="second">
Just another paragraph
</p><imgid="course-image"
src="https://img-a.udemycdn.com/course/480x270/437398_46c3_9.jpg"
/><formid="your-name"><h2>Your name here</h2><pclass="first">Please fill in this form :)</p><inputtype="text" placeholder="Your name" /><button>OK!</button></form></body></html>
Basic Styling with CSS & Introduction to the CSS Box Model