Skip to content

Instantly share code, notes, and snippets.

View Cwheese's full-sized avatar

Chris Cwheese

View GitHub Profile
@Cwheese
Cwheese / index.html
Created October 6, 2025 14:38 — forked from old-campos/index.html
HTML: Sample site
<!DOCTYPE HTML>
<!-- THE DOCTYPE tells the browser what type of webpage to render, the doctype used in this website is HTML5 which is the most recent HTML. -->
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>My Pimpin Website</title>
<!-- THE TITLE element is the name of the page, it is also visible in the browser tab. Its always good practice to give each page an appropriate title. -->
<meta name="description" content="A sample website, nothin fancy">
<meta http-equiv="author" content="Francisco Campos Arias">
<meta name="keywords" content="html, css, web, design, sample, practice">