JSFiddle - React, Tailwind, and code Playground

by lustre

HTML

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<title>Antra puslapis</title>
<meta charset="utf-8"/>
</head>
<body>

<div class="header" id="header">
	<br />
	<h2>Tomas Vilemaitis ir Vilius Munikas</h2>
	<h1>Paslaugų Centras</h1>
</div>




</body>
</html>

CSS

body {
    background: #E6E6E6;
    color: black;
}

.header {
    margin:0px auto;
    width:700px;
    height:150px;
    background: rgba(255,255,255,0.2);
}

#header h1 {
    opacity:1;
    font-family: times, Times New Roman, times-roman, georgia, serif;
    color: #444;
    margin:0px;
    padding: 0px 0px 6px 0px;
    font-size: 51px;
    line-height:20px;
    letter-spacing:-2px;
    font-weight:bold;
}

#header h2 {
    opacity:1;
    font-family: Gill Sans, Verdana;
    font-size: 11px;
    line-height: 14px;
    text-transform: uppercase;
    letter-spacing:2px;
    font-weight: bold;
}