forked from rochellelewis/basic-mockup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 3.14 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/style.css" type="text/css"/>
<title>Basic CSS Exercise</title>
</head>
<body class="sfooter">
<div class="sfooter-content">
<header>
<div class="container">
<h1>Dylan's Profe$$ional Web Page</h1>
</div>
</header>
<main>
<div class="container">
<div class="instructions">
<h2>Instructions</h2>
<ol>
<li>Fork and clone the following GitHub repository, and create a new project in PhpStorm: <a
href="https://github.com/rlewis2892/basic-mockup" target="_blank">https://github.com/rlewis2892/basic-mockup</a></li>
<li>Using basic CSS, style this page like the mockup image here: <a href="mockup.php" target="_blank">Mockup Image</a></li>
<li>Have fun! We will be going over each student's project in class. :D</li>
</ol>
</div>
<img class="pull-left" src="img/star-trek-cat.jpg" alt="star trek cat" />
<h2>These are the voyages of the Starship Enterprise!</h2>
<p>Its continuing mission, to explore strange new worlds, to seek out new life and new civilizations, to boldly go where no one has gone before. We need to neutralize the homing signal. Each unit has total environmental control, gravity, temperature, atmosphere, light, in a protective field. Sensors show energy readings in your area. We had a forced chamber explosion in the resonator coil. Field strength has increased by 3,000 percent.</p>
<h3>Cmdr Riker's nervous system has been invaded by an unknown microorganism.</h3>
<p>Now what are the possibilities of warp drive? The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.</p>
<p>Communication is not possible. The shuttle has no power. Using the gravitational pull of a star to slingshot back in time? We are going to Starbase Montgomery for Engineering consultations prompted by minor read-out anomalies. Probes have recorded unusual levels of geological activity in all five planetary systems. Assemble a team. Look at records of the Drema quadrant. Would these scans detect artificial transmissions as well as natural signals?</p>
<section class="clear">
<img class="pull-right" src="img/janeway.jpeg" alt="captain janeway is fierce" />
<h2>Shields up!</h2>
<p>I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.</p>
<div class="clear"></div>
</section>
</div>
</main>
</div>
<footer>
<div class="container">
<p>Resistance is futile!</p>
</div>
</footer>
</body>
</html>