-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (58 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="index.css">
<!--DESCRIPTION OF WEBSITE and LINKING ^^-->
<meta name= “description” content="Welcome to the home page of my new resume!">
<title>Home | Resume</title>
</head>
<body>
<div>
<header>
<h1> Sue's New Resume!</h1>
<p> check out my resume below!</p>
</header>
<div id="column">
<nav>
<!-- This is the Navigation bar (the one on the left or center if screen is <750) has all internal pages-->
<ul>
<li><a href="index.html" target="_blank">Home</a></li>
<li><a href="education.html" target="_blank">Education</a></li>
<li><a href="employment.html" target="_blank">Experience</a></li>
<li><a href="skills.html" target="_blank">Skills</a></li>
<li><a href="projects.html" target="_blank">Projects</a></li>
</ul>
</nav>
<main>
<!--Main includes a picture of myself and a paragraph that describes who I am, At the bottom, I included my name and address
Using a table <table> -->
<div id="image">
<img src="myself.jpg" alt="Sue Ngo">
<h3> About Me</h3>
<p> I am a motivated and technically proficient senior at Boston University, specializing in low-level systems with a strong passion for hardware technologies. With a solid foundation in system architecture and embedded systems, I am poised to receive my bachelor's degree in 2025.
Throughout my academic career, I have honed my skills in designing and troubleshooting complex hardware systems. My coursework and hands-on projects have equipped me with a deep understanding of hardware design principles, digital logic, and microprocessor architecture. I have successfully completed projects involving the design of embedded systems that interact with real-time sensors and actuators, demonstrating my ability to apply theoretical knowledge in practical applications.
In addition to my technical skills, I possess strong problem-solving abilities and a keen attention to detail, which are essential in the fast-paced field of hardware technology. My collaborative projects have refined my team-working skills, and I have consistently taken leadership roles in group assignments, ensuring projects are delivered on time and to specifications.
</p>
</div>
<table>
<tr>
<th>Name</th>
<th>Address</th>
<th> Contact</th>
</tr>
<tr>
<td>An Ngo |</td>
<td> 33 Harry Agganis Way |</td>
<td> 224-623-3484</td>
</tr>
</table>
</main>
</div>
<!--CREDITS-->
<footer>
<p>All Rights Reserved by An Ngo <a href="credits.html"> Credits</a> ©</p>
</footer>
</div>
</body>
</html>