Skip to content

Instantly share code, notes, and snippets.

View Pl4stICA's full-sized avatar
🟪
Coding

Riccardo Bolognese Pl4stICA

🟪
Coding
View GitHub Profile
@Pl4stICA
Pl4stICA / index.html
Created June 3, 2024 10:45 — forked from chrisvfritz/index.html
Simplest possible HTML template
<!doctype html>
<html>
<head>
<title>This is the title of the webpage!</title>
</head>
<body>
<p>This is an example paragraph. Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.</p>
</body>
</html>