List of HTML tags

Style all the html tags

by Imri Paloja

HTML

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
<div class="container">
  <h1>Testing display of HTML elements</h1>

  <h2>This is 2nd level heading</h2>
  <p>This is a test paragraph.</p>
  <h3>This is 3rd level heading</h3>
  <p>This is a test paragraph.</p>
  <h4>This is 4th level heading</h4>
  <p>This is a test paragraph.</p>
  <h5>This is 5th level heading</h5>
  <p>This is a test paragraph.</p>
  <h6>This is 6th level heading</h6>
  <p>This is a test paragraph.</p>

  <h2>Basic block level elements</h2>

  <p>This is a normal paragraph (<code>p</code> element).
    To add some length to it, let us mention that this page was
    primarily written for testing the effect of <strong>user style sheets</strong>.
    You can use it for various other purposes as well, like just checking how
    your browser displays various HTML elements by default.
    It can also be useful when testing conversions from HTML
    format to other formats, since some elements can go wrong then.</p>
  <p>This is another paragraph. I think it needs to be added that
    the set of elements tested is not exhaustive in any sense. I have selected
    those elements for which it can make sense to write user style sheet rules,
    in my opionion.</p>
  <div>This is a <code>div</code> element. Authors may use such elements instead
    of paragraph markup for various reasons. (End of <code>div</code>.)</div>
  <blockquote>
    <p>This is a block quotation containing a single
      paragraph. Well, not quite, since this is not <em>really</em>
      quoted text, but I hope you understand the point. After all, this
      page does not use HTML markup very normally anyway.</p>
  </blockquote>
  <p>The following contains address information about the author, in an <code>address</code>
    element.</p>
  <address>
    <a...

CSS

html,
body {
  color: #454545;
}

div.container {
  margin-top: 1%;
  border: 1px solid #CCCCCC;
  background: #EEEEEE;
  padding: 20px 30px;
  box-shadow: 1px 1px 1px #454545;
  border-radius: 5px;
}


table {
  width: 100%;
}

h1 {
  
}

h2, h3, h4, h5, h6 {
  border-bottom: 1px solid #CCCCCC;
}