Created
January 28, 2011 22:31
-
-
Save sergeykish/801135 to your computer and use it in GitHub Desktop.
HTML is not hard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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