JSFiddle - React, Tailwind, and code Playground

by Spencer Smith

HTML

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,700&amp;.css">
<div class="content">
  <h1>(dot)spencer</h1>
  <p>My name is Spencer Smith and I want to make an impact on the world.</p>
  <h3>Projects</h3>
  <p><a href="https://goo.gl/RbVpcd">Effortless Reviews</a> - A review generation tool (SaaS) to help local businesses rank higher on Google and grow their business.</p>
  <p><a href="http://takentaken.com">Taken Taken</a> - A simple domain name availability checker.</p>
  <p><a href="https://goo.gl/7CUW2F">Review Link Generator</a> - A handy tool to help generate Google review links for businesses.</p>
  
  
  <p><a href="https://goo.gl/GA3sup">GitHub</a> | <a href="https://goo.gl/N7nYtP">StackOverflow</a> |<a href="https://goo.gl/jUwR6X">LinkedIn</a></p>
  
</div>

CSS

body {
  background-color: #404040;
  font-family: 'Roboto Mono', monospace;
  color: white;
}
.content {
  max-width: 500px;
  margin: 0 auto;
}
p {
  line-height: 1.8rem;
  margin: 1.5rem 0;
}
a {
  color: deepskyblue;
}
h3 {
  margin-top: 45px;
}