-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (81 loc) · 1.98 KB
/
index.html
File metadata and controls
107 lines (81 loc) · 1.98 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Home - Charles Crandall Compendium</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- Header -->
<Header>
<h1>
Charles Crandall Compendium
</h1>
<nav>
<ul class="HeaderLinks">
<li><a href="index.html">Home</a></li>
<li><a href="about/index.html">About</a></li>
<li><a href="portfolio/index.html">Portfolio</a></li>
<li><a href="blog/index.html">Blog</a></li>
</ul>
</nav>
<img class="HeaderLogo" src="images/Logo.png" alt="Three Cs form to create a logo" />
</header>
<!-- Home Page -->
<h2>
Welcome
</h2>
<article class="HomeSpecific">
<h3 class="HomeSpecific">
Greetings, my name is Charles Max Crandall and welcome to my website.
</h3>
<!-- Home Page Nav -->
<div class="HomeThreeColumn">
<section>
<h3>
<a href="about/index.html">About</a>
</h3>
<p>
Learn more about me.
</p>
<div class="MagnifyingGlass">
</div>
</section>
<section>
<h3>
<a href="portfolio/index.html">Portfolio</a>
</h3>
<p>
See all the projects that I've contributed too.
</p>
<div class="Ribbon">
</div>
</section>
<section>
<h3>
<a href="blog/index.html">Blog</a>
</h3>
<p>
Checkout my blog, where I post updates now and then.
</p>
<div class="Bubble">
</div>
</section>
</div>
</article>
<!-- Footer -->
<footer>
<p>
Contact
</p>
<ul>
<li>Phone: 1-717-381-1131</li>
<li>Email: robloxatme.com@gmail.com</li>
</ul>
<p>
© <time datetime="2019">2019</time> Charles Crandall Compendium
</p>
</footer>
</body>
</html>