Skip to content

Instantly share code, notes, and snippets.

@whichbuffer
Created October 19, 2018 07:44
Show Gist options
  • Save whichbuffer/f4debf47a2d54beeb2464c770fae88f6 to your computer and use it in GitHub Desktop.
Save whichbuffer/f4debf47a2d54beeb2464c770fae88f6 to your computer and use it in GitHub Desktop.
Applied Visual Design
<style>
h4 {
text-align: center;
}
p {
text-align:justify;
}
.links {
margin-right: 20px;
}
.fullCard {
border: 1px solid #ccc;
border-radius: 5px;
margin: 10px 5px;
padding: 4px;
}
.cardContent {
padding: 10px;
}
</style>
<div class="fullCard">
<div class="cardContent">
<div class="cardText">
<h4>Google</h4>
<p>Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.</p>
</div>
<div class="cardLinks">
<a href="https://en.wikipedia.org/wiki/Larry_Page" target="_blank" class="links">Larry Page</a>
<a href="https://en.wikipedia.org/wiki/Sergey_Brin" target="_blank" class="links">Sergey Brin</a>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment