Skip to content

Instantly share code, notes, and snippets.

@saipraveen-a
Created October 13, 2020 12:28
Show Gist options
  • Save saipraveen-a/6d66267feb1211dbd96494de0c827222 to your computer and use it in GitHub Desktop.
Save saipraveen-a/6d66267feb1211dbd96494de0c827222 to your computer and use it in GitHub Desktop.
Building a Multi-Column Layout
<html>
<head>
<title>HTML & CSS</title>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header>
<h1>I'm learning HTML and CSS</h1>
</header>
<main>
<div class="intro">
<h2></h2>
<p></p>
</div>
</main>
</body>
</html>
<div class="my-skills">
<div class="columns">
<div class="column">
<h3>HTML</h3>
<p>Magna fringilla urna porttitor rhoncus dolor purus. Malesuada bibendum arcu vitae elementum. Purus sit amet volutpat consequat. </p>
</div>
<div class="column">
<h3>CSS</h3>
<p>Magna fringilla urna porttitor rhoncus dolor purus. Malesuada bibendum arcu vitae elementum. Purus sit amet volutpat consequat. </p>
</div>
<div class="column">
<h3>And More</h3>
<p>Magna fringilla urna porttitor rhoncus dolor purus. Malesuada bibendum arcu vitae elementum. Purus sit amet volutpat consequat. </p>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment