-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
95 lines (83 loc) · 2.56 KB
/
contact.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
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
<!Doctype html>
<html>
<head>
<title>My Project: Contact</title>
<link rel="stylesheet" href="css/StyleSheetWeek5.css"/>
<link href="https://fonts.googleapis.com/css?family=Cantarell:400,400italic|Roboto:400,300italic|Kotta+One' rel='stylesheet' type='text/css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
</head>
<body>
<!--BEGIN HEADER-->
<header>
<div id="logo">
<a href="#">
<h1>Irene plagurizing Joshua's Project</h1>
</a>
</div>
<nav id="menu">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</header>
<!--END OF HEADER-->
<!--BEGIN BANNER-->
<div id="banner-home">
<h1>Strive for Success</h1>
</div>
<!--END BANNER-->
<!--BEGIN CONTACT SECTION-->
<section id="contact">
<div class="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3197.604061093963!2d-119.78796568537068!3d36.732069279232846!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x809460a5cfdf4b6b%3A0xab092ce50c284a0a!2sBitwise+Industries!5e0!3m2!1sen!2sus!4v1455165238230" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
<div class="info">
<h3>Personal</h3>
<ul>
<li>Irene Hsieh</li>
<li>700 Van Ness Ave</li>
<li>Fresno, CA 93721</li>
<li>(559) 555-1212</li>
<li>[email protected]</li>
</ul>
</div>
<div class="info">
<h3>Business</h3>
<ul>
<li>Bitwise Industries</li>
<li>700 Van Ness Ave</li>
<li>Fresno, CA 93721</li>
<li>(888) 287-0125</li>
<li>[email protected]</li>
</ul>
</div>
</div>
</section>
<!--END CONTACT SECTION-->
<!--BEGIN FOOTER-->
<footer id="copyright">
<div class="social">
<a href="#">
<i class="fa fa-facebook-official"></i>
</a>
<a href="#">
<i class="fa fa-twitter"></i>
</a>
<a href="#">
<i class="fa fa-linkedin"></i>
</a>
<a href="#">
<i class="fa fa-github"></i>
</a>
</div>
<p>© 2016 Irene Hsieh. All Rights Reserved. | Site By: <a href="#">J.D.</a> </p>
</footer>
<!--END OF FOOTER-->