forked from seagreenmedia/HTML-CSS-Pair-Programming-Lab-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (56 loc) · 2.2 KB
/
index.html
File metadata and controls
63 lines (56 loc) · 2.2 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
<!DOCTYPE html>
<html>
<head>
<title>ClassiPost</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<meta charset="utf-8">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="card" style="width: 60rem; height: 60rem">
<div class="card-body">
<div>
<header class="turtle">
<!--<div class="blackband">-->
<h1>MyWebsite</h1>
<!--</div>-->
</header>
</div>
<br>
<h2>This is a Lorem Ipsum Heading</h2>
<br>
<img src="gb/GB.jpg" width="300" height="300">
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Dolorem veniam magni aliquid eligendi praesentium magnam reiciendis ducimus reprehenderit, alias optio consectetur aspernatur. Officiis consequatur ducimus libero optio? Reiciendis,
ipsam magni?</p>
<a>Read More</a>
</div>
<div>
<div class="brain">
<h3>Sidebar Links</h3>
<hr>
<a>Link 1</a>
<br>
<a>Link 2</a>
<br>
<a>Link 3</a>
<br>
<a>Link 4</a>
<br>
</div>
<br>
<div>
<h3>Other Widgets</h3>
<hr>
<p>This is Photoshop's version of Lorem ipsum dolor sit amet consectetur adipisicing elit. Ad soluta ducimus ipsum neque voluptate, molestiae maxime ratione impedit odit suscipit minus consectetur velit! Minus iure non ea alias voluptas eos?
</p>
</div>
</div>
<footer class="rat">
Copyright <a href="http://eluhachi.wixsite.com/seagreenmedia"> Sea Green Media</a>. All rights reserved.
</footer>
</div>
<!-- <footer class="rat">
Copyright <a href="http://eluhachi.wixsite.com/seagreenmedia"> Sea Green Media</a>. All rights reserved.
</footer>-->
</body>
</html>