Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<title>HTML Form</title>
</head>
<body>
<form>
<p>First Name:</p>
<input type="text" name="firstname" placeholder="First Name">
<!DOCTYPE html>
<html>
<head>
<title>ID and Class Page</title>
<style>
#main-navigation {
color: brown;
}
h1 {
<!DOCTYPE html>
<html>
<head>
<title>List Page</title>
</head>
<body>
<h1>Lets Play with Lists</h1>
<!-- Unordered List -->
<ul>
<!DOCTYPE html>
<html>
<head>
<title>This is a title</title>
</head>
<body>
<h1>Lets Play with Links</h1>
<a href="link.html" target="_blank">Go to Link Page</a>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>HTML Elements Cont..</title>
</head>
<body>
<h1>More Elements</h1>
<p>Here is a quote: <q>Inspirational quote would go right here.</q></p>