🧑‍💻 New to Linux or LabEx? We recommend starting with the Quick Start with Linux course.
Hi there, welcome to LabEx! In this first lab, you'll learn the classic "Hello, World!" program in CSS.
Click the Continue button below to start the lab.
This is a Guided Lab, which provides step-by-step instructions to help you learn and practice. Follow the instructions carefully to complete each step and gain hands-on experience. Historical data shows that this is a intermediate level lab with a 79% completion rate. It has received a 99% positive review rate from learners.
The keyboard is waiting. Let’s go.
Hello CSS
We have already created index.html file in the WebIDE. Let's open it and add some HTML code.
<!doctype html>
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1>Hello HTML</h1>
</body>
</html>
Then click on the bottom right corner Go Live button, this will run a local web server on 8080 port.
Now, you can switch to the Web 8080 Tab, and click the refresh button to see the changes.