Skip to content

Instantly share code, notes, and snippets.

@nguyenthanhxuan
Created March 24, 2013 08:06
Show Gist options
  • Save nguyenthanhxuan/5230977 to your computer and use it in GitHub Desktop.
Save nguyenthanhxuan/5230977 to your computer and use it in GitHub Desktop.
html: begin
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>the HTML template</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div id="header">
<div id="header_content">
<div id="logo">
<a href="index.html"><img src="images/logo.png"></a>
</div>
<div id="slogan">
<img src="images/slogan.png" />
</div>
<div id="menu">
<ul>
<li><a href ="#">Home</a></li>
<li><a href ="#">About Us</a></li>
<li><a href ="#">Newsletter</a></li>
<li><a href ="#">Duty</a></li>
<li><a href ="#">Output</a></li>
<li><a href ="#">Solution</a></li>
<li><a href ="#">Testimonial</a></li>
<li><a href ="#">Contact Us</a></li>
</ul>
</div>
</div>
</div>
<div id="content">
</div>
<div id="footer">
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment