Skip to content

Instantly share code, notes, and snippets.

@liconrepo
Created August 24, 2017 09:26
Show Gist options
  • Select an option

  • Save liconrepo/2dd7d3a50c43e87348be2f078eee36f9 to your computer and use it in GitHub Desktop.

Select an option

Save liconrepo/2dd7d3a50c43e87348be2f078eee36f9 to your computer and use it in GitHub Desktop.
This is sample html code for the very beginners.
<!DOCTYPE html>
<html>
<head>
<!-- your webpage info goes here -->
<title>My First Website</title>
<meta name="author" content="your name" />
<meta name="description" content="" />
</head>
<body>
<!-- webpage content goes here in the body -->
<div id="page">
<div id="logo">
<h1><a href="/" id="logoLink">My First Website</a></h1>
</div>
<div id="nav">
<ul>
<li><a href="#/home.html">Home</a></li>
<li><a href="#/about.html">About</a></li>
<li><a href="#/contact.html">Contact</a></li>
</ul>
</div>
<div id="content">
<h2>Home</h2>
<p>
This is my first webpage! I was able to code all the HTML and CSS in order to make it. Watch out world of web design here I come!
</p>
<p>
I can use my skills here to create websites for my business, my friends and family, my C.V, blog or articles. As well as any games or more experiment stuff (which is what the web is really all about).
</p>
</div>
<div id="footer">
<p>
Webpage made by <a href="/" target="_blank">[your name]</a>
</p>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment