JSFiddle - React, Tailwind, and code Playground

by heriberto perez

HTML

<!DOCTYPE html>
<html>
    <body>
        <h2>W3schools Online HTML editor</h2>
        <p>Write and test your HTML code online.</p>
		<div class="flex-header-container">
	      <div>
			  <h1> the title</h1>
			  <span>the logo</span>
		  </div>
		  <div>
			  <span> ...</span>
		  </div>
	    </div
    </body>
</html>

CSS

.flex-header-container {
  display: flex;
  flex-direction: row;
}