Skip to content

Instantly share code, notes, and snippets.

Created November 28, 2017 06:41
Show Gist options
  • Save anonymous/aa4836284d6a9eeb4289d9732b8c3cc2 to your computer and use it in GitHub Desktop.
Save anonymous/aa4836284d6a9eeb4289d9732b8c3cc2 to your computer and use it in GitHub Desktop.
FCC - Project 1
<html lang="en">
<head>
<title>Bootstrap Tribute Page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.6/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="jumbotron text-center">
<div class="row">
<div class="col-sm-12">
<h1 class="text-info">Tribute to Jesus Christ</h1>
<p>The man and God who saved my life and gave it purpose</p>
<img src="https://i.pinimg.com/originals/57/b4/5f/57b45fab230eb63431f73cb306362ee1.jpg" class="img-thumbnail">
<div class="caption text-center">Jesus (c. 4 BC – c. 30 / 33 AD), also referred to as Jesus of Nazareth and Jesus Christ, was a Jewish preacher and religious leader who is the central figure of Christianity. Christians believe him to be the Son of God and the awaited Messiah
(Christ) prophesied in the Old Testament.</div>
</div>
<div class="container" id="top-buffer">
<div class="row">
<div class="col-sm-6">
<h3>Important Points</h3>
<ul>
<li>All modern scholars agree that Jesus existed</li>
<li>Jesus was a Galilean Jew</li>
<li>Jesus debated fellow Jews on how to best follow God</li>
<li>Was crucified and raised from the dead</li>
</ul>
</ul>
</div>
<div class="col-sm-6">
<h3>Why He Matters to Me</h3>
<ul>
<li>Anwsers the reason for my existence</li>
<li>He is the way to eternal life</li>
<li>He walks wtih my everyday and cares</li>
<li>He mediates for me with his Father, God</li>
</ul>
</div>
<div class="container" id="bottom-buffer">
<div class="row">
<div class="col-sm-12">
<h5>More Information</h3>
<p><a href="https://en.wikipedia.org/wiki/Jesus" target="_blank">Wikipedia</a></p>
<p><a href="https://carm.org/dictionary-jesus" target="_blank">Mix of Secular and Christian Sources </a></p>
<p><a href="https://www.allaboutjesuschrist.org" target="_blank">All About Jesus Christ</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="text-center">
<hr>
<p>Written and coded by <a href="#" target="_blank">Joe Horn</a></p>
</footer>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta/js/bootstrap.min.js"></script>
#top-buffer {
margin-top: 30px;
}
#bottom-buffer {
margin-top: 30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment