O Level Exam : Practical Question
📝 HTML
🎨 CSS
⚡ Java Script
<!DOCTYPE html> <html> <head> <title>Welcome Page</title> </head> <body> <!-- a. Large Title --> <h1>Welcome to My Webpage</h1> <!-- b. First Paragraph --> <p> Hello! My name is <b>John Doe</b>. I am a <i>passionate learner</i> and enjoy exploring new technologies. I love to <u>experiment with coding</u> and create useful projects. </p> <!-- b. Second Paragraph --> <p> In my free time, I enjoy <b>reading books</b>, <i>traveling to new places</i>, and <u>learning new programming languages</u>. My goal is to become a skilled <b><i>software developer</i></b> in the future. </p> </body> </html>
▶ Run Code
🖥 Output: