Created
March 22, 2018 01:26
-
-
Save maisonm/0f452df42b57e06099b00fb316c0a2b7 to your computer and use it in GitHub Desktop.
Flexbox Example Page - HTML
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> | |
<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