Skip to content

Instantly share code, notes, and snippets.

@coderrb
Created January 22, 2018 16:35
Show Gist options
  • Save coderrb/b77f3d25dec9ffb8c67be45be6612185 to your computer and use it in GitHub Desktop.
Save coderrb/b77f3d25dec9ffb8c67be45be6612185 to your computer and use it in GitHub Desktop.
<html>
<head>
<title> DIV Tag Example </title>
</head>
<body>
<p> This is Paragraph 1 <p>
<div style="color:#0000FF">
<h3> This is A Heading </h3>
<p> This Is Paragraph 2 </p>
</div>
<div style = "color:#FF0000">
<h3> This is Heading 2 </h3>
<p> This Is Paragraph 3 </p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment