Skip to content

Instantly share code, notes, and snippets.

@sergeykish
Created January 28, 2011 22:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sergeykish/801135 to your computer and use it in GitHub Desktop.
Save sergeykish/801135 to your computer and use it in GitHub Desktop.
HTML is not hard
$ mkdir site
~$ cd site/
~/site$ cat >index.html
<html>
<head>
<title>Home</title>
</head>
<body>
<h1>Home</title>
<p>Welcome to our site! We've already made several pages:</p>
<ul>
<li><a href="/about">About</a></li>
</ul>
</body>
</html>
~/site$ cat >about.html
<html>
<head>
<title>About</title>
</head>
<body>
<h1>About</h1>
<p>TODO: descripbe us.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment