<!DOCTYPE html>
<html>
  <head>
      <meta charset="utf-8">
      <link rel="stylesheet" href="genstyle.css" type="text/css">
      <title>Web Server Market Share</title>
      <style>
       p { text-align: center; }
       table { margin: auto; }
       caption { font-weight: bold; font-family: sans-serif; }
       th, td { padding: 5px; }
       th { text-decoration: underline; font-family: sans-serif; }
       td:nth-child(1) { font-weight: bold; }
       td:nth-child(2) { font-style: italic; }
       td {
	   text-align: left;
	   padding-left: 0.75em;
	   border: 1pt solid #003300;
       }
       td:last-child { text-align: right; padding-right: 0.75em; }
      </style>
  </head>
  <body>
      <h1>Web Browser Share</h1>
      <p>Browser share viewed from 
	  <a href="https://www.w3schools.com/browsers/">W3 Schools</a>,
	  October 2017.
      </p>
      <table>
	  <caption>W3 Schools Browser Market Share</caption>
	  <tr>
	      <th>Browser</th><th>Producer</th><th>Percentage</th>
	  </tr>
	  <tr>
              <td>Chrome</td><td>Google</td><td>76.1</td>
	  </tr>
	  <tr>
              <td>Firefox</td><td>Mozilla</td><td>12.1</td>
	  </tr>
	  <tr>
              <td>IE/Edge</td><td>Microsoft</td><td>4.1</td>
	  </tr>
	  <tr>
              <td>Safari</td><td>Apple</td><td>3.3</td>
	  </tr>
	  <tr>
              <td>Opera</td><td>Opera</td><td>1.2</td>
	  </tr>
      </table>

      <table style="border-collapse: collapse; margin-top: 3em;">
	  <caption>W3 Schools Browser Market Share</caption>
	  <tr>
	      <th>Browser</th><th>Producer</th><th>Percentage</th>
	  </tr>
	  <tr>
              <td>Chrome</td><td>Google</td><td>76.1</td>
	  </tr>
	  <tr>
              <td>Firefox</td><td>Mozilla</td><td>12.1</td>
	  </tr>
	  <tr>
              <td>IE/Edge</td><td>Microsoft</td><td>4.1</td>
	  </tr>
	  <tr>
              <td>Safari</td><td>Apple</td><td>3.3</td>
	  </tr>
	  <tr>
              <td>Opera</td><td>Opera</td><td>1.2</td>
	  </tr>
      </table>
  </body>
</html>