JSFiddle - React, Tailwind, and code Playground

by leiperte

HTML

<!--Assignment 12 - Content Management Systems-->
<style>
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}
td, th {
  border:1px solid #dddddd;
  text-align: left;
  padding: 8px;
}
tr:nth-child(even){
  background-color: #dddddd;
}
</style>
<h2>
Content Management Systems
</h2>
<table>
<tr>
  <th>System</th>
  <th>Produced/Sold By</th>
  <th>Technology Base</th>
  <th>Major Capabilities</th>
  <th>Major Limitations</th>
  <th>Example Sit</th>
</tr>
<tr>
  <td>Drupal</td>
  <td>Open Source</td>
  <td>PHP</td>
  <td>API</td>
  <td>Security and import issues</td>
  <td>drupal.org</td>
</tr>
<tr>
  <td>Squarespace</td>
  <td>Squarespace, Inc.</td>
  <td>Web-App</td>
  <td>SEO tools, plugin compatiable</td>
  <td>limitied ability for users to alter or expand</td>
  <td>www.squarespace.com</td>
</tr>
<tr>
  <td>Wix</td>
  <td>Software by Wix</td>
  <td>cloud-based</td>
  <td>ADI, communication and financial tools</td>
  <td>lacks SEO, limited ability to perform complex tasks</td>
  <td>www.wix.com</td>
</tr>
<tr>
  <td>Contentful</td>
  <td>Sascha Konietzke and Paolo Negri</td>
  <td>JSON API</td>
  <td>seemless integration amoung platforms</td>
  <td>not user friendly</td>
  <td>www.contentful.com</td>
</tr>
<tr>
  <td>Joomla!</td>
  <td>Open Source Matters, Inc.</td>
  <td>PHP</td>
  <td>MySQL, MS SQL, PostgreSQL</td>
  <td>Security, limited customization, diicult to use</td>
  <td>www.joomla.org</td>
</tr>
</table>