Skip to content

Instantly share code, notes, and snippets.

@jslvtr
Created September 12, 2020 12:39
Show Gist options
  • Save jslvtr/45babdeecd6e703742701c3619c1d8a0 to your computer and use it in GitHub Desktop.
Save jslvtr/45babdeecd6e703742701c3619c1d8a0 to your computer and use it in GitHub Desktop.
Web Developer Bootcamp with Flask and Python - Learning HTML Project [Step 3]
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<title>Rolf Smith - Learning HTML</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<img class="profile" src="profile.png" alt="Rolf's profile picture." />
<h1>I'm learning HTML and CSS!</h1>
<p>
Hello, my name is Rolf Smith. I'm learning about web development, and I'm
starting with HTML and CSS.
</p>
<p>
With HTML and CSS, I can make all sorts of websites. HTML and CSS are the
most important languages to learn!
</p>
<p>This website's code looks like this:</p>
<img class="code" src="code.png" alt="The HTML code for this page." />
</body>
</html>
/* This file is empty. */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment