<h1>Learning WebDev</h1>
<p>Hello, and welcome to the LearningWebDev roadmap!</p>
<h2>You are going to learn:</h2>
<ul>
  <li>HTML</li>
  <li>CSS</li>
  <li>Javascript</li>
  <li>NodeJS</li>
</ul>
<hr />
<p>
  <a href="https://learnjs.today">Go to the Home Page</a>
</p>
/* Write here your css */

body {
  font-family: sans-serif;
}

h1 {
  color: brown;
}

h2 {
  margin-bottom: 5px;
}

p, li {
  font-size: 14px;
}

ul, li {
  margin: 0;
  padding: 0;
}

li {
  border-bottom: 1px solid #ddd;
  padding-top: 5px;
  padding-bottom: 5px;
}

a {
  display: block;
  color: blue;
  text-decoration: none;
  background-color: #eee;
  padding: 10px;
  border-radius: 20px;
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.