JSFiddle - React, Tailwind, and code Playground

by ZhenLiu

HTML

<html>
    <head>
        <title>Zhen Liu</title>
        <link rel="stylesheet" type="text/css" href="main.css">
        <script src="svg.min.js"></script>
    </head>
    <body>
        <div id="output">
        <input class = type1 type = "text" placeholder = "Search"><br>
        </div>
    </body>
    <script src="main.js"></script>
</html>

CSS

.type1 {
    width: 500px;
    font-family: "serif";
    font-weight: bold;
    text-transform: uppercase;
    background: #ffeee6;
    margin: 30px;
    padding: 25px;
    font-size: 35px;
    position: absolute;  
    text-align: left;
    transform: translate(300px, 1600px);
}