-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
84 lines (68 loc) · 2.78 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>About Annie</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- this is a header-->
<div class="header">
<h1>ABOUT ME</h1>
</div>
<!-- this is where Objective Statement, Education and Profession Experience go-->
<div class="content">
<h2>Objective Statement</h2>
<p>My objective is to finish Code Fellows with the foundation of HTML/CSS, JavaScript and iOS Application Development so that I can start working as a software developer.</p>
<br>
<h2>Biography</h2>
<p>I am currently a student at Code Fellows. I'm learning to be a Software Developer. I like dogs, cloudy days and the outdoor.</p>
<br>
<h2>Education</h2>
<ul>
<li><b>Advanced Software Development in iOS 401 - Objective-C and Swift</b> <i>May 2017</i></li>
<li><b>Intermediate Software Development 301 - JavaScript</b> <i>Jan. 2017</i></li>
<li><b>Foundations of Software Development 201 - HTML/CSS/JavaScript</b> <i>Dec. 2016</i></li>
<li><b>MBA</b> <i>2009</i></li>
<li><b>BA in Finance</b> <i>2004</i></li>
</ul>
<br>
<h2>Professional Experience</h2>
<ul>
<li>Project 1 - Code Fellows - Level 201 <i>2016</i></li>
<li>Project 2 - Code Fellows - Level 301 <i>2017</i></li>
<li>Project 3 - Code Fellows - Level 401 <i>2017</i></li>
<li>Sr. Finance Mananger - Xome <i>2015-2016</i></li>
<li>Finance Manager - Inrix <i>2014-2106</i></li>
</ul>
<br>
<h2>Top Ten Places I would like to travel to:</h2>
<ol>
<li>Barcelona</li>
<li>Madrid</li>
<li>Venice</li>
<li>Florence</li>
<li>Rome</li>
<li>London</li>
<li>Paris</li>
<li>Machu Pichu</li>
<li>Buenos Aires</li>
<li>Antarctica</li>
</ol>
</div>
<!--this is where photo and contact info go-->
<div class="contact">
<img src="image/Me.jpg">
<h2>Contact Information</h2>
<h3>Annie Ton-Nu</h3>
<address>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Phone: 206-555-5555</p>
</address>
</div>
<!--this is the footer-->
<div class="footer"><i>© 2016. All rights reserved.</i></div>
<!--game-->
<script src="app.js"></script>
</body>
</html>