Skip to content

Instantly share code, notes, and snippets.

@nickgs
Created May 1, 2020 17:48
Show Gist options
  • Save nickgs/3bed0e81515a1fdc65710cc8038f00ca to your computer and use it in GitHub Desktop.
Save nickgs/3bed0e81515a1fdc65710cc8038f00ca to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Flexbox layouts</title>
<link href="https://fonts.googleapis.com/css?family=Dancing+Script&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href='css/styles.css'/>
<link rel="stylesheet" type="text/css" href='css/layout.css'/>
</head>
<body>
<div class="nav">
<ul>
<li><a class="active" href="/">Home</a></li>
<li><a href="about.html">About Me</a></li>
</ul>
</div>
<div class="layout-flex">
<div class="item hero">Awesome development services!</div>
<div class="item">2</div>
<div class="item">3</div>
<div class="item">4</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment