-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (54 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="header">
<div class="container">
<nav>
<img src="Images/temp_logo.png" class = "logo">
<ul>
<li>
<a href="https://tetris.com/play-tetris">HOME</a>
<a href="#">ABOUT</a>
<a href="#">PROJECTS</a>
<a href="#">RESUME</a>
</li>
</ul>
</nav>
<div class="header-text">
<h1>Hi, I'm <span>Nathan</span><br>Nguyen</h1>
<p>First Year Software Engineer attending<br>University of California, Irvine</p>
</div>
</div>
</div>
<!-- ----------------ABOUT------------------- -->
<div id="about">
<div class="container">
<h1>About Me</h1>
<div class="row">
<div class="about-col-1">
<img src=".png">
</div>
<div class="about-col-2">
<p>text...</p>
<p>Testing git pushing123</p>
</div>
</div>
</div>
</div>
<!-- -----------------PROJECTS---------------- -->
<div id="projects">
<div class="container">
<h1>My Projects</h1>
<div class="row">
<div class="project1"></div>
</div>
</div>
</div>
</body>
</html>