Created
May 1, 2020 17:48
-
-
Save nickgs/3bed0e81515a1fdc65710cc8038f00ca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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