-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
47 lines (37 loc) · 2.01 KB
/
about.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
<!--
Andrew DiBiasio [email protected]
I am a Computer Science Major at the University of Massachusetts Lowell and I created this file as part of and
assignment for my course 91.461 GUI Programming I. This is the about page. It provides vistors to my web page informtaion
about me, such as my name and my enrollment in UML. It's content can be dynamically added to index.html's content div be selecting it's link in the navbar.
Created: September 11, 2014 9:00 PM Revised: November 6th 2014
-->
<!-- No need for header, html, and body tags because the code is added to the content div in index.html -->
<div id="Background_layer2" class="background">
<div id="page" class="background">
<div id="Header_Main">
<h1 class="title">Andrew's First Web Page!</h1>
<p>
My name is Andrew DiBiasio. I am currently enrolled at the University of Massachusetts Lowell.
I am in my senior year and am expecting to graduate in spring of 2015. If you ever need to find me, head to your nearest StarBucks, I may be inside reading a nice book while
enjoying a venti caramel latee"
</p>
</div>
<!-- End of #Header_Main div -->
<!-- This block contains infromation and a picture of Angel the dog -->
<div id="Angel">
<h2 class="sub_title">Angel and I </h2>
<p><img src="Angel_and_Me.jpg" alt="A picture of my dog and I" class="picture" /></p>
<p>This is a picture my best friend Angel and me. He is a German Shepard.</p>
</div>
<!-- End of #Angel div
<!-- This block contains information and a picture of my favorite artist, Kurt Cobain -->
<div id="Kurt">
<h2 class="sub_title">Kurt D Cobain - Favorite Artist </h2>
<p><img src="Kurt_Cobain.jpg" alt="A picture of Kurt Cobain" class="picture" /></p>
<blockquote>"It's better to <strong>burn out</strong> than <em>fade away</em> - Kurt Cobain"</blockquote>
</div>
<!-- End of #Kurt div -->
</div>
<!-- End of #page dev -->
</div>
<!-- End of #Background_layer2 dev -->