JSFiddle - React, Tailwind, and code Playground
by bryiantan
HTML
<script src="https://fonts.googleapis.com/css?family=Raleway"></script>
<div class="head">
<img src="images/face.jpg" id="face" alt="">
<h1 class="head2">Debaveye Elias</h1>
<h2 class="head2" >A C# software developer</h2>
</div>
CSS
div.head img#face {
width: 450px;
height: 450px;
}
div.head {
background: rgba(187, 200, 133, 1);
margin: auto;
display: block;
margin-left: auto;
margin-right: auto;
position: center;
width: 1088px;
height: 450px;
}
div.head h1{
display: inline-block;
font-family: Raleway;
color: #FFF;
font-size: 70px;
overflow: hidden;
padding-left: 65px;
font-weight: lighter;
}
div.head h2 {
display: inline-block;
margin-top: 0px;
font-family: Raleway;
color: #000;
font-size: 50px;
font-weight: lighter;
}