Skip to content

Instantly share code, notes, and snippets.

@srveit
Last active January 3, 2016 12:59
Show Gist options
  • Save srveit/8466276 to your computer and use it in GitHub Desktop.
Save srveit/8466276 to your computer and use it in GitHub Desktop.
Page with four divs with fixed ratios
!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Fixed Ratio Sample</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="parent">
<div class="image">
<img src="http://www.solarnavigator.net/music/music_images/avril_lavigne_not_just_a_pretty_face.jpg" alt="" width="95%"/>
</div>
<div class="contact">
<p>Name</p>
<p>Address</p>
<p>Phone Number</p>
</div>
<div class="access">
<p>You have access</p>
</div>
<div class="courses">
<p>Course 1</p>
<p>Course 2</p>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment