I studied HTML and CSS to build my academic website jianglanwei.com:

Jianglan Wei | Carnegie Mellon Robotics Institute

HTML

This chapter is adapted from the HTML tutorial by W3Schools.com:

W3Schools.com

Introduction

HTML, or Hyper Text Markup Language, is the standard markup language for creating webpages. Here is a simple HTML document:

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>
<a href="<https://www.w3schools.com>">This is a link</a>
<img src="w3schools.jpg">

</body>
</html>