forked from AnthonyParkerJr/HTML-CSS-Pair-Programming-Lab-1
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmockup.html
More file actions
77 lines (62 loc) · 2.42 KB
/
mockup.html
File metadata and controls
77 lines (62 loc) · 2.42 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<doctype! html>
<html>
<head>
<title>MyWebsite</title>
<link rel="stylesheet" href="mockup.css">
</head>
<body>
<div class="container">
<h1>MyWebsite</h1>
<div class="sidebar">
<h3>Sidbar Links</h3>
<hr>
<p><a href="">Link 1</a></p>
<p><a href="">Link 2</a></p>
<p><a href="">Link 3</a></p>
<p><a href="">Link 4</a></p>
<br>
<h3>Other Widgets</h3>
<hr>
<p>This is Photoshop's version of Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean solicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit.</p>
<br>
<p>Duis sed odo sit amet nibh vulputate cursus a sit amet mauris.</p>
</div>
<div class="main-content">
<div class="info">
<img src="golden_gate.jpeg" id="bridge">
<div class="info-content">
<h2>This is a Lorem Ipsum Heading</h2>
<p>Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.</p>
<p>Mauris in erat justo.</p>
<br>
<p><a href="..">Read more</a></p>
</div>
</div>
<div class="info">
<img src="golden_gate.jpeg" id="bridge">
<div class="info-content">
<h2>This is a Lorem Ipsum Heading</h2>
<p>Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.</p>
<p>Mauris in erat justo.</p>
<br>
<p><a href="..">Read more</a></p>
</div>
</div>
<div class="info">
<img src="golden_gate.jpeg" id="bridge">
<div class="info-content">
<h2>This is a Lorem Ipsum Heading</h2>
<p>Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.</p>
<p>Mauris in erat justo.</p>
<br>
<p><a href="..">Read more</a></p>
</div>
</div>
</div>
<div class="footer">
<p></p>
<h5>Copyright <a href="...">YourSite</a>. All rights reserved.</h5>
</div>
</div>
</body>
</html>