-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (135 loc) · 5.24 KB
/
index.html
File metadata and controls
137 lines (135 loc) · 5.24 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
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- instructs page to match screens width -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- style sheet references -->
<link href="/styles/style.css" type="text/css" rel="stylesheet" integrity="sha384-9tUr5B1nDcpa1HPEI70FeUeC3AsZ9oGuTWScloeezJoD0daESslplwX0727Ww8sp"></link>
<!-- font families -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<!-- google icon font -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<!-- fontawesome icons -->
<script src="https://kit.fontawesome.com/1ab8eae6e7.js" crossorigin="anonymous"></script>
<title>Walter Pham Portfolio</title>
</head>
<header>
<!-- navigation bar -->
<nav class="navbar" id="myNavbar">
<a href="index.html" class="active"><i class="fas fa-home"></i></a>
<a href="projects.html"><i class="far fa-folder"></i> PROJECTS</a>
<a href="blog.html"><i class="fas fa-book-open"></i> BLOG</a>
<a href="contact.html"><i class="far fa-envelope"></i> CONTACT</a>
<a href="javascript:void(0);" class="hamburger" onclick="hamburgerMenu()">
<!-- hamburger icon -->
<i class="fas fa-bars"></i>
</a>
</nav>
<!-- title page -->
<section class="title-container">
<div class="titleleft">
<h1>WALTER<br> PHAM.</h1>
</div><br>
<div class="titleright">
<h1>
DESIGN.<br>GAMEDEV.<br>WEB DEV.<br>
</h1>
</div>
<div class="titlebody">
<p>
Howdy, I'm a Brisbane based web developer with a background in animation. I love collaborating on 72 hour game jams and sketching people.
</p>
</div>
<!-- arrow icon -->
<div class="arrow-container">
<span id="arrow" class="material-icons titlearrow">

</span>
</div>
</section>
</header>
<body>
<!-- skills page -->
<main class="skills-container">
<h1 class="skills-title">SKILLS.</h1>
<section class="skill-grid">
<ul>
<li>
<!-- skill icons grid -->
<div class="skill-icon fab fa-html5"></div>
<p>HTML</p>
</li>
<li>
<div class="skill-icon fab fa-css3-alt"></div>
<p>CSS</p>
</li>
<li>
<div class="skill-icon fab fa-git-alt"></div>
<p>GIT</p>
</li> <li>
<div class="skill-icon fab fa-js-square"></div>
<p>JAVASCRIPT</p>
</li> </li> <li>
<div class="skill-icon fab fa-figma"></div>
<p>FIGMA</p>
</li> </li> <li>
<div class="skill-icon fas fa-pencil-ruler"></div>
<p>DESIGN</p>
</li>
</ul>
</section>
<!-- avatar image -->
<div class="skill-image">
<img src="images/avatar-skills.png" alt="me with a laptop" class="responsive-image laptopavi">
</div>
</main>
<!-- Projects|Blog|Contact cards and Resume button -->
<div class="cards-container">
<div class="cards-button">
<h1>
<a href="projects.html" class="button projects" id="project" target="_self">PROJECTS</a>
</h1>
</div>
<div class="cards-button">
<h1>
<a href="blog.html" class="button blog" id="blog" target="_self">BLOG</a>
</h1>
</div>
<div class="cards-button">
<h1>
<a href="contact.html" class="button contact" id="contact" target="_self">CONTACT</a>
</h1>
</div>
<div class="resume-button">
<!-- opens resume in new tab -->
<h1>
<a href="Resume.pdf" class="button resume" target="_blank">RESUME</a>
</h1>
</div>
<!-- Social Media icons -->
<footer>
<div class="social-media-icons">
<a href="https://github.com/wpham1" class="fab fa-github"></a>
<a href="https://www.linkedin.com/in/walterpham/" class="fab fa-linkedin-in"></a>
<a href="https://twitter.com/WalterPham5" class="fab fa-twitter"></a>
</div>
<img src="images/avatar-footer.png" alt="me happy on a bike" class="responsive-image bikeavi">
</footer>
</div>
<!-- JavaScript for nav -->
<script>
function hamburgerMenu(){
var x = document.getElementById("myNavbar");
if (x.className === "navbar") {
x.className += " responsive";
} else{
x.className = "navbar";
}
}
</script>
</body>
</html>