Skip to content

Instantly share code, notes, and snippets.

@maisonm
Created March 22, 2018 01:26
Show Gist options
  • Save maisonm/0f452df42b57e06099b00fb316c0a2b7 to your computer and use it in GitHub Desktop.
Save maisonm/0f452df42b57e06099b00fb316c0a2b7 to your computer and use it in GitHub Desktop.
Flexbox Example Page - HTML
<!DOCTYPE html>
<html>
<head>
<title>Flexbox Example</title>
<link type="text/css" rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Rubik" rel="stylesheet">
</head>
<body>
<div class="container">
<div id="box1" class="box">#1</div>
<div id="box2" class="box">#2</div>
<div id="box3" class="box">#3</div>
<div id="box4" class="box">#4</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment