Skip to content

Instantly share code, notes, and snippets.

View jordanholtdev's full-sized avatar

Jordan jordanholtdev

View GitHub Profile
@jordanholtdev
jordanholtdev / form.html
Created October 23, 2020 17:44
Built-in client-side validation
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>Document</title>
</head>
<body>
<form>
@jordanholtdev
jordanholtdev / hamburger-form-01.html
Created October 9, 2020 15:41
This is basic HTML form markup
<form
action="https://tasty.hamburgers.example.com/order"
enctype="application/x-www-form-urlencoded"
method="POST"
>
<p>
<label
>Name: <input name="custname" type="text" autocomplete="name" required
/></label>
</p>
@jordanholtdev
jordanholtdev / basic-web-page.html
Created October 2, 2020 15:07
This is a basic web page built with HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Introduction to winter camping</title>
<style>
html {
max-width: 800px;
}