-
Notifications
You must be signed in to change notification settings - Fork 444
/
about.html
56 lines (47 loc) · 1.87 KB
/
about.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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'>
<title>Portfolio Homepage</title>
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="nav-wrapper">
<div class="left-side">
<div class="nav-link-wrapper">
<a href="index.html">Home</a>
</div>
<div class="nav-link-wrapper active-nav-link">
<a href="about.html">About</a>
</div>
</div>
<div class="right-side">
<div class="brand">
JORDAN HUDGENS
</div>
</div>
</div>
<div class="content-wrapper">
<div class="two-column-wrapper">
<div class="profile-image-wrapper">
<img src="images/profile.jpg" alt="">
</div>
<div class="profile-content-wrapper">
<h1>Hi, thanks for visiting my site.</h1>
<p>With over a decade of development experience in a number of industries I realized that the typical product creation
process between clients and developers was flawed. All too often developers rarely communicate to clients throughout
the development stage, resulting in a final product that fails to reach the goal sought by the customer and end
user.
</p>
<p>For this reason I decided to utilize a completely different development pattern that focuses on highly focused
communication and transparent design patterns. When I take on a project not only do I work to craft the application
according to the client's specifications, I give daily updates to ensure that the project is aligning properly
with the client's goals. The end result is the right product, delivered on time, and on budget.</p>
</div>
</div>
</div>
</div>
</body>
</html>