top of page
An Introduction to Code
HTML
1991
Tim Berners-Lee invented HTML after inventing the www in 1989.
HTML is a markup language: a standardised system for displaying and linking web pages which can be read by a web browser. HTML is often used in conjunction with coded programs, which add interest and interactivity to webpages.
A website after editing the HTML with
x-ray goggles
SCREENSHOT HERE
Some HTML code I embedded
EMBED:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Links
Tutorials:
Dick Baldwin Programming Tutorials
Code snippets:
w3schools
About web servers:
How to host your own web server
Testing area
Decoded
bottom of page