Skip to content

Instantly share code, notes, and snippets.

View gitipedras's full-sized avatar
🏠
Working from home

Gitipedras gitipedras

🏠
Working from home
View GitHub Profile
@gitipedras
gitipedras / style.css
Created August 13, 2023 10:53
CSS Template
@font-face {
font-family: "FONT FACE";
src: url("WHAT IS THE URL?") format("TRUETYPE FOR TTF AND OPENTYPE FOR OTF");
}
body {
font-family: FONT FAMILIES - MONOSPACE SANS-SERIF SERIF FANTASY CURSIVE;
}
@gitipedras
gitipedras / HTML5_template_structure.html
Created August 12, 2023 14:47
HTML5 template structure
# CAPPITAL LETTERS LIKE THIS ARE ONLY PLACEHOLDERS
# NOTES: CHARSET UTF-8 IS COMMON
<!DOCTYPE html>
<html lang="AN EXISTING LANGUAGE">
<head>
<title>TITLE</title>
<link rel="WHAT IS THIS LINK FOR?" href="WHERE IS IT GOING TO?">
<meta charset="UTF-8">
</head>
<body>