Files
g10-m2/FromJavaScriptTojQuery-master/03-jQueryEvents/02-events_in_jquery/challenge_solution/Cards-jquery.html

75 lines
3.8 KiB
HTML
Executable File

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery</title>
<link href="style.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="container">
<nav>
<ul>
<li id="logoNav">CODE INSTITUTE</li>
<li id="stream1_btn">Stream 1</li>
<li id="stream2_btn">Stream 2</li>
<li id="stream3_btn">Stream 3</li>
</ul>
</nav>
<div class="card stream1">
<img class="card_image" src="img/3.png" alt="html image">
<div class="card_bottom">
<h2 id="hr_html" class="card_head" >HTML</h2>
<p class="card_para">Once you join a Code Institute Bootcamp you will be taken on an accelerated contextualised learning path across 3 streams. Nothing is learned in isolation.We contextualise the content so that the knowledge and skills gained in each learning unit feeds into, and is expanded upon, within the next unit.The outputs of each stream will be a project.
</p>
<a href="" class="bottom_button">Button</a>
</div>
</div>
<div class="card stream3">
<img class="card_image" src="img/1.png" alt="mysql image">
<h2 id="hr_mysql" class="card_head">MySql</h2>
<p class="card_para">If you have questions about your career in coding or simply want to meet the Code Institute team, then come along to our next Careers Open Evening in Dublin</p>
<a href="" class="bottom_button">Button</a>
</div>
<div class="card stream2">
<img class="card_image" src="img/2.png" alt="python image">
<h2 id="hr_python" class="card_head">Python</h2>
<p class="card_para">If you have questions about your career in coding or simply want to meet the Code Institute team, then come along to our next Careers Open Evening in Dublin</p>
<a href="" class="bottom_button">Button</a>
</div>
<div class="card stream1">
<img class="card_image" src="img/3.png" alt="jquery image">
<div class="card_bottom">
<h2 id="hr_jquery" class="card_head">jQuery</h2>
<p class="card_para">Once you join a Code Institute Bootcamp you will be taken on an accelerated contextualised learning path across 3 streams. Nothing is learned in isolation.We contextualise the content so that the knowledge and skills gained in each learning unit feeds into, and is expanded upon, within the next unit.The outputs of each stream will be a project. </p>
<a href="" class="bottom_button">Button</a>
</div>
</div>
<div class="card stream3">
<img class="card_image" src="img/4.png" alt="django image">
<h2 id="hr_django" class="card_head">Django</h2>
<p class="card_para">The syllabus has been developed to help you transform your career. The summarised syllabus, below, provides you with a snapshop of what skills you will come away with. Feel free to contact us for more detail on what you will learn.</p>
<a href="" class="bottom_button">Button</a>
</div>
<div class="card stream1">
<img class="card_image" src="img/1.png" alt="css image">
<h2 id="hr_css" class="card_head">CSS</h2>
<p class="card_para">The syllabus has been developed to help you transform your career. The summarised syllabus, below, provides you with a snapshop of what skills you will come away with. Feel free to contact us for more detail on what you will learn.</p>
<a href="" class="bottom_button">Button</a>
</div>
<div id="my_footer">
<p id="copyright">Copyright Infomation</p>
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.2.1.js"
integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE="
crossorigin="anonymous"></script>
<script src="script.js"></script> <!-- Scripts located at the bottom of the body to insure page is fully loaded before execution -->
</body>
</html>