Skip to content

Instantly share code, notes, and snippets.

@myanmarlinks
Last active September 26, 2017 16:22
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 myanmarlinks/cfc72412cb17f9163b516d1239bd711b to your computer and use it in GitHub Desktop.
Save myanmarlinks/cfc72412cb17f9163b516d1239bd711b to your computer and use it in GitHub Desktop.
JavaScript Fundamental Part 4 - Code Block 1
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>DOM TEST</title>
</head>
<body>
<div id="container">
<div class="row">
<h1>Hello World</h1>
<a href="#">Click Here</a>
</div>
<div class="row">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laborum beatae quas praesentium. Distinctio hic vel nihil, eum facilis doloremque incidunt atque autem dolor est esse fugit tempora ea magni, quis.</p>
</div>
<div class="row">
<ul>
<li><a href="#">How are you</a></li>
<li><a href="#">How do you do</a></li>
<li><a href="#">What are you doing</a></li>
<li><a href="#">Where do you live</a></li>
</ul>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment