Skip to content

Instantly share code, notes, and snippets.

@cofauver
Created April 23, 2014 16:46
Show Gist options
  • Save cofauver/11223047 to your computer and use it in GitHub Desktop.
Save cofauver/11223047 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title> I am the Mermoose </title>
</head>
<body>
<h1 style="text-align:center;color:blue">Mermoose</h1>
<img src=http://mermoose.com/mermoose_medium.png>
<h2>About Mermoose</h2>
<p><a href="http://www.mermoose.com/">Mermoose</a> is a collaborative venture of Cory Fauver, Michael Groeneman, Jonathan Hillis, and Zach Wood-Doughty founded in April, 2014.</p>
<h3>What does Mermoose <em>do</em>?</h3>
<p>Mermoose is designed to help people <strong>find interesting content</strong> online by collecting information about their online <strong>reading habits</strong>. Mermoose offers a beautiful interface for exploring content and doesn't require the user to manually enter any information about their preferences.</p>
<h3>What are the next steps</h3>
<ol>
<li>Build the minimum viable product</li>
<li>Get into an accelerator</li>
<li>???</li>
<li>Profit</li>
</ol>
<h3>Mermoose facts</h3>
<ul>
<li>A mermoose is the combination of a mermaid and a moose</li>
<li>A mermoose can swim through both water and snow</li>
<li>The enemy of the mermoose is the baleen whale</li>
</ul>
</body>
</html>
@groeneman
Copy link

Looks good! Two quick things:

  • On line 8, you'll want quotes around the image URL, and a / at the end of the img tag (because imgs are "self-closing" tags). As you've probably seen, most browsers will render the image fine without these things, but it's generally best to stick to standard to maximize browser compatibility. So the line would look like this: <img src="http://mermoose.com/mermoose_medium.png" />
  • HTML is really wonky with regard to whitespace, so just to be safe, the title tag shouldn't have the spaces before I and after Mermoose: <title>I am the Mermoose</title>

Otherwise, off to a great start! Good use of <em> and <strong> instead of <i> and <b>. For a bonus point, can you explain to the group (in a comment here, or on Sunday) why em and strong are now preferred?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment