Skip to content

Instantly share code, notes, and snippets.

View annessca's full-sized avatar
💭
Doing this and that

Ann Ralph annessca

💭
Doing this and that
View GitHub Profile
@annessca
annessca / firststeps.html
Last active January 9, 2020 09:15
Basic HTML code for beginners
<!DOCTYPE html>
<html lang="en">
<head>
<title>First Steps</title>
<link rel="stylesheet" href="myStyle.css">
</head>
<body>
<h1 id="main">A Major Heading</h1>
<p style="color:red">This is a styled paragraph. It has a red color</p>
<br>