JSFiddle - React, Tailwind, and code Playground

by Love Trivedi

HTML

<h1>testing css</h1>
    <p>this text shows the paragrpah going under css</p>
    <img src = "http://images.wikia.com/glee/images/1/1d/ImaFes.jpg" />
</body>

CSS

h1 {
    font-family: Verdana, sans-serif , serif;
    color:#576D94;
} 
p {
    font-size:18px;
    color: #4A4943;
    font-family: Garamond, serif;
}
img {
    height:100px;
    width:300px;
    border:1px solid #4682b4;
}