-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (114 loc) · 4.88 KB
/
index.html
File metadata and controls
136 lines (114 loc) · 4.88 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<link href="style.css" rel="stylesheet" type="text/css">
<style>
* {box-sizing: border-box;
}
#main { width: 960px;
margin:0 auto;
}
header {width: 960px;
background: white;
font-size: 40px;
text-align: center;
margin:0 auto;
padding: 40px;
padding-top:0;
}
h1, h2 {border-bottom: solid 1px lightgrey;
}
h1, h2{ padding-top: 10px;
padding-bottom: 15px;
}
h2{ padding-top:0;}
#header-right{float: left;
width: 30%;
}
footer {
text-align: center;
height: 100px;
}
body{background: lightgray;
top:0%;
}
#picture{float: left;
width: 150px;
height: 150px;
background: grey;
padding: 20px;
border: 20px;
margin-right: 10px;
}
#about-me {width: 650px;
background: white;
float: left;
padding: 25px;
margin-top: 20px;
margin-bottom: 20px;
}
#sidebar {width: 270px;
float: right;
background: white;
margin-top: 20px;
padding: 10px;
text-align: center;
}
#stuff { background: #4aaaa5;
color: white;
float: left;
margin-left: -40px;
padding: 20px;
}
.head {width:100%;
background: white;
}
#contact {float:right;
padding: 10px;
}
</style>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>About Me</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="head">
<header >
<div >
<section id="stuff">Josiah Pham
</section>
<section id="contact">
<a href="index.html" style="text-decoration : none; color :darkgrey; font-size: 20px">About</a>
<a href="portfolio.html" style="text-decoration : none; color :darkgrey; font-size: 20px">Portfolio</a>
<a href="contact.html" style="text-decoration : none; color :darkgrey; font-size: 20px">Contact</a>
</section>
</div>
</header>
</div>
<div id="main">
<section id="about-me">
<h1 style="color:#4aaaa5;">About Me</h1>
<img id="picture" src="#" alt="profile pic">
<p>My name is Josiah Pham and I'm on my journey to become a coder. Currently, I'm working part time at Mt. SAC up in Walnut, CA as an Adjunct ESL professor.
If this coding boot camp works out I hope to find a job here in Orange County but I'm also open to work in other cities.</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Consequuntur minima, explicabo placeat id asperiores, dolore maxime voluptatum iusto accusamus quibusdam eius! Quidem iure sunt harum fugiat in, unde ipsam saepe.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis consequuntur, numquam porro iure deserunt aliquam excepturi reprehenderit officia quae impedit ullam eum nulla voluptates repellat. Dicta explicabo incidunt est dignissimos.
</p>
</section>
<section id="sidebar">
<h2 style="color:#4aaaa5;">Connect with Me</h2>
<a href="https://github.com/jphamxuan"> <img id="github" src="./assests/github.png"alt="github" style="width:50px;height:50px;"></a>
   <a href="https://www.linkedin.com/in/josiah-pham-b88a04155/"><img id="portfolio" src="./assests/linkedin.png"alt="github" style="width:50px;height:50px;"></a>
   <a href="https://github.com/jphamxuan"><img id="stack" src="./assests/stackoverflow.svg"alt="github" style="width:50px;height:50px;"></a>
</section>
</div>
<footer>
<center> © Copyright 2018 Josiah Pham</center></div>
</footer>
</body>
</html>