-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (93 loc) · 4.88 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Christy Hanson's Portfolio</title>
<!-- Bulma CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/b1ab18d062.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- hero--------------->
<section class="hero has-background-danger-light">
<div class="hero-body">
<h1 class="title is-1 has-text-grey-dark">Developer Portfolio</h1>
<h2 class="subtitle has-text-grey-dark">The journey is up to you.</h2>
</div>
</section>
<!-- Bulma dynamic columns powered by Flexbox. -->
<div class="columns">
<div class="column">
<p class="bd-notification is-info"></p>
<h1 class="title "></h1>
<div class="navigation-links" id="navigation">
<div class="columns is-mobile">
<div class="column">
<p class="bd-notification is-info"></p>
<!--Anchor tagged navigation links.-->
<a href="#about">About Me</a>
<br>
<a href="#projects">Projects</a>
</div>
<div class="column">
<p class="bd-notification is-info"></p>
<a href="https://www.linkedin.com/in/christyghanson/"><i class="fa-brands fa-linkedin"></i></a>
<a href="mailto:chrsthnsn@gmail.com"><i class="fa-regular fa-envelope"></i></a>
<!-- Enabled hyperlinked icons to open in a new tab. -->
<a href="https://github.com/ChristyGHanson" target="_blank" rel="noopener noreferrer"><i
class="py-1 self-center fa-brands fa-github-alt"></i></a>
</div>
</div>
</div>
<div class="photo-container" id="avatar">
<figure>
<br><img src="assets/images/chanson.jpg" alt="photo" style="width: 10%;height:20%;">
</figure><br>
</div>
<div class="about-container" id="about">
<h1 class="title">Hi! I'm Christy.</h1>
<p>How do you do? I'm from the Navajo Nation.</p>
<br>
<p> I first got into coding in 2018, but I finally
decided
to take programming more seriously in 2022.</p>
<p>Web development looked the most fun, so here I am.</p>
<br>
<p>Before I became a UW Bootcamp student, I was a community
manager at 7 Generation Games, an edutech software company. </p>
<p>I was also an English teacher once upon a time. Guess I'm going from education to tech.</p>
<br>
<p>My favorite hobby is knitting while watching shows or listening to audiobooks, music, and podcasts.
</p>
<p>I have a Syrian hamster named Peach.</p>
<br>
</div>
<div class="projects-container" id="projects">
<h1 class="title">Projects</h1>
<p>⭐ View my team's <a href="https://github.com/caseyfee/EventDash" target="_blank"
rel="noopener noreferrer">Project 1 remote repo</a> for our front-end application called <a
href="https://caseyfee.github.io/EventDash/" target="_blank"
rel="noopener noreferrer">"EventDash."</a></p>
<p>⭐ View my team's <a href="https://github.com/JpBaer/Jam-Session-Music-Sharing-App" target="_blank"
rel="noopener noreferrer">Project 2 repo</a> for our full-stack application <a
href="https://calm-tor-47120.herokuapp.com/" target="_blank" rel="noopener noreferrer">"Jam
Session."</a></p>
<p>⭐ View our <a href="https://github.com/Shelcisco/Hozho-Weaving-Network" target="_blank"
rel="noopener noreferrer">Project 3</a> full-stack application, which was deployed with Heroku:
<a href="https://hozho-weaving-network.herokuapp.com/" target="_blank"
rel="noopener noreferrer">Hozho Weaving Network.</a>
</p>
<br>
<p>P.S. I'm re-styling this webpage with Bulma and Font Awesome. I am enjoying it, so far. Look forward
to more features.</p>
</div>
</div>
<footer class="">
</footer>
<!--JavaScript file-->
<script src="script.js"></script>
</body>
</html>