-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (78 loc) · 2.34 KB
/
index.html
File metadata and controls
82 lines (78 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../Personal-Portfolio/assets/style.css" />
<title>Kyler's Portfolio</title>
</head>
<body>
<header>
<h1>KylerG12</h1>
<nav>
<a href="#About">About Me</a>
<a href="#Work">My Work</a>
<a href="#Contact">Contact Me</a>
</nav>
</header>
<section class="Photo">
<img
src="./assets/img/Blazers.png"
alt="Trailblazers"
style="width: 650px; height: 600px"
/>
<img
src="./assets/img/Personal-Photo.jpg"
alt="Photo of Me"
style="width: auto; height: 600px"
/>
<img
src="./assets/img/University.png"
alt="UofO"
style="width: 650px; height: 600px"
/>
</section>
<section class="About" id="About">
<h2>About Me</h2>
<p>
My name is Kyler Gibbs and I am born and raised in Oregon. I have always
been fascinated by technology and the ways in which we utilize it to
simplify and improve our lives. I spent most of my life working with
computers and am now further my knowledge by learning how to code.
</p>
<p>
As a lifelong sports fan, I attend many Portland Trailblazers games with
my season tickets and actively root for my alma matter, the University
of Oregon.
</p>
</section>
<section class="Work" id="Work">
<h2>My Work</h2>
<nav class="Banner">
<div class="Horiseon">
<a href="https://kylerg12.github.io/Horiseon-Website/"
>Horiseon Website</a
>
</div>
</nav>
<nav class="Grid">
<div class="Prework">
<a href="https://kylerg12.github.io/prework-study-guide/"
>Prework Study Guide</a
>
</div>
</nav>
<nav class="Grid">
<div class="Ticket">
<a href="#">Ticket Finder</a>
</div>
</nav>
</section>
<footer class="Contact" id="Contact">
<h3>Contact Me</h3>
<a href="tel:1-503-998-1628">503-998-1628</a>
<a href="mailto:kylergibbs@hotmail.com">KylerGibbs@hotmail.com</a>
<a href="https://github.com/KylerG12">My Github</a>
</footer>
</body>
</html>