Skip to content

Instantly share code, notes, and snippets.

@revitalk
Created March 20, 2020 20:57
Show Gist options
  • Save revitalk/340200d2487522992680cd91bc523a01 to your computer and use it in GitHub Desktop.
Save revitalk/340200d2487522992680cd91bc523a01 to your computer and use it in GitHub Desktop.
Initial HTML for CUNY program Pages
<!DOCTYPE html>
<html lang="en">
<!-- The HEAD portion contains information about the document -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Page Title</title>
<link href="https://fonts.googleapis.com/css?family=Alegreya|Alegreya+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<!-- The BODY portion contains all the content that is inside the browser window -->
<!-- The BODY represents the browser's window -->
<body>
<!-- This DIV represents the page inside the browser's window -->
<div class="container">
<header class="page-header">
<h1><img src="images/logo.png" alt="CUNY Design"></h1>
<h2>Design programs across CUNY</h2>
</header>
<nav class="main-menu">
<div class="menu-button"><img src="images/menu.svg" width="48" alt=""></div>
<ul>
<li><a href="#">Degrees</a></li>
<li><a href="#">Topics</a></li>
<li><a href="#">Apply</a></li>
</ul>
</nav>
<!-- Inside the MAIN elements is the primary content of this page -->
<main class="page-main">
<img src="images/mea.jpg" alt="mea student" class="fluid-image">
<h3>Borough of Manhattan Community College</h3>
<h2>Multimedia Programming and Design</h2>
<h4>Degree: A.S. </h4>
<p>The Multimedia Programming and Design Program prepares students for careers in a variety of multimedia industries, companies and institutions that develop, produce or market multimedia products, programs or services. The program instructs students in the design and programming of computer-based interactive products that incorporate text, graphics, sound, animation and video. It also develops different types of talent, both creative and technical, with the imperative that each understands the work of the other so that they can collaborate effectively.
</p>
<p>
Upon successful completion of the curriculum, students are awarded an <span class="orange-color">Associate in Science degree (A.S.)</span> and may transfer to senior institutions such as York, NYU or New York City College of Technology. </p>
<h4>Transfer Options</h4>
<p> BMCC has articulation agreements with CUNY NYC College of Technology to allow you to seamlessly continue your education there without any loss of credits. </p>
<p>Learn More</p>
</main>
<!-- Page's footer -->
<footer class="page-footer">CITY UNIVERSIT OF NEW YORK &copy; Copyright 2020</footer>
</div> <!-- closes the Container div -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment