Hi! This is Caroline's first website! and the theme is

welcome to the Web Development World!

I use HTML, CSS and javascript to build this simple website. And here is a test for the Markdown.

the codeing part of javascript is:

let myHeading = document.querySelector(".box-welcome");

function setUserName() {
  let myName = prompt("Your name?");
  localStorage.setItem("name", myName);
  myHeading.textContent = "Hi! " + myName;
}

setUserName();

Is that cool?

references

If you want to learn web development, please go to mozilla