Last active
August 29, 2015 14:17
-
-
Save amandabee/7002f106beadd8db1485 to your computer and use it in GitHub Desktop.
HTML Examples http://bl.ocks.org/amandabee/7002f106beadd8db1485
This file contains 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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>HTML Examples: Simple Columns</title> | |
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-sm-4"> | |
<img src="lady.gif" class="pull-left"/> | |
<h1 style="color:#ffd200;">4.1 Million</h1> | |
<p>Lorem ipsome To learn more about HTML Tidy see http://tidy.sourceforge.net Please fill bug reports and queries using the "tracker" on the Tidy web site.</p> | |
</div><!-- /col --> | |
<div class="col-sm-4"> | |
<img src="face.gif" class="pull-left"/> | |
<h1 style="color:#c73831;">6.9%</h1> | |
<p>Lorem ipsome To learn more about HTML Tidy see http://tidy.sourceforge.net Please fill bug reports and queries using the "tracker" on the Tidy web site.</p> | |
</div><!-- /col --> | |
<div class="col-sm-4"> | |
<img src="up.gif" class="pull-left"/> | |
<h1 style="color:#2e6b7d;">17.7%</h1> | |
<p>Lorem ipsome To learn more about HTML Tidy see http://tidy.sourceforge.net Please fill bug reports and queries using the "tracker" on the Tidy web site.</p> | |
</div><!-- /col --> | |
</div><!-- /row --> | |
</div><!-- /container --> | |
</body> | |
</html> |
This file contains 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
(Seeing images? to get anything out of this snippet you'll want to skip right down to <a href="http://bl.ocks.org/amandabee/7002f106beadd8db1485#Images.html">the code</a>.) | |
Imagur gives you this: | |
<a href="http://imgur.com/P6IDE9U"><img src="http://i.imgur.com/P6IDE9U.jpg" title="source: imgur.com" /></a> | |
1: take off the anchor <br /> | |
<img src="http://i.imgur.com/P6IDE9U.jpg" title="source: imgur.com" /> | |
2: give it a real title <br /> | |
<img src="http://i.imgur.com/P6IDE9U.jpg" title="Clever Flag Graphic" /> | |
3: add Bootstraps responsive image class <br /> | |
<img src="http://i.imgur.com/P6IDE9U.jpg" title="Clever Flag Graphic" class="img-responsive" /> | |
The "img-responsive" class is documented at <a href="http://getbootstrap.com/css/#images">http://getbootstrap.com/css/#images</a>. |
This file contains 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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>HTML Examples</title> | |
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<a href="Images.html">Cleaning up Imagur images</a><br /> | |
<a href="SurveyForm.html">Embedding a Survey</a><br /> | |
<a href="columns.html">Working with Bootstrap Columns</a><br /> | |
<a href="captions.html">Adding Captions to Graphics</a><br /> | |
</div><!-- /container --> | |
</body> | |
</html> | |
This file contains 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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>HTML Examples: Embedded Survey</title> | |
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<iframe src="https://docs.google.com/forms/d/1e9uNW-4LpaS20B9vnKycgUpsVew_RqNKKOvo9PL7rcE/viewform?embedded=true" width="760" height="500" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe> | |
</div><!-- /container --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment