-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (103 loc) · 5.92 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
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Betty Van | Web Developer Portfolio</title>
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/5bc41de75f.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="bv-logo">
<a href="https://betty-van.github.io/"><img class="logo" src="images/logo.png" alt="BV - web developer - logo"></a>
</div>
<navbar>
<a href="#projects">Projects</a>
<a href="#about">About</a>
<a href="#skills">Skills</a>
<div class="navbutton"><a href="#contact">Contact Me</a></div>
</navbar>
<div class="mobile-nav">
<ul class="nav-links">
<li><a href="#projects">Projects</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact Me</a></li>
</ul>
<div class="burger-menu">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</div>
</header>
<div class="container">
<div class="top-intro">
<img class ="top-image" src="images/top-img-shorter.png" alt="top image">
<h1>I'm Betty. </h1>
<p>a productivity-lover who makes things on the internet</p>
</div>
<div class="projects">
<a name="projects"><h1>Projects</h1></a>
<div class="boxes">
<div class="col">
<a href="https://quikchat-heroku.herokuapp.com/" target="blank"><img src="images/Quikchat.JPG" alt="QuikChat web application"></a>
</div>
<div class="col">
<a href="https://book-review-website-app.herokuapp.com/" target="blank"><img src="images/BookReviewWebsite.JPG" alt="Book Review App"></a>
</div>
<div class="col">
<a href="https://betty-van.github.io/code-school/index.html" target="blank"><img src="images/code-school.JPG" alt="code school"></a>
</div>
<div class="col">
<a href="https://betty-van.github.io/Clean-Soap-Company/" target="blank"><img src="images/clean-soap-co.JPG" alt="Clean Soap Company"></a>
</div>
</div>
</div>
<div class="about">
<a name = "about"><h1 class="title">About</h1></a>
<h2>Current</h2>
<p>I am an occupational therapist who currently works in a local school district working with students and teachers to facilitate access to education for students who have more difficulty doing so.</p>
<p>In the present, I am taking <a href="https://www.cs50.harvard.edu/web/" target="blank">CS50 Web Programming with Python and Javascript</a> and starting to build my portfolio website, which I plan on improving over time. </p>
<h2>Background</h2>
<p>I first <b>started programming</b> by taking a Udemy course on HTML and CSS for responsive web design. I progressed quickly and began learning Javascript. Then, I realized I was missing some core computer science fundamentals and enrolled and completed <a href="https://cs50.harvard.edu/college/" target="blank">CS50</a>'s Introduction to Computer Science course offered by Harvard University. </p>
<p>I live in Kirkland, WA currently, but I'ved lived in many cities in California and Texas in my past. I have a fluffy cat named Indie. Masters in Occupational Therapy and B.S. in Biochemistry from <a href="https://twu.edu/" target="blank">Texas Woman's University</a> and <a href="https://www.utdallas.edu/" target="blank">UT Dallas</a>, respectively. I'm married to a wonderful husband named Jake. Together, we love pour-over coffee, chai tea, organic heavy cream, and living <strike>an exciting</strike> a simple life.</p>
<h2>Future</h2>
<p>In the future, I plan on learning advanced JS concepts such as OOP, learn React, Node.js, and related things.</p>
<p>I plan on making a productivity web application that combines a calendar, to-do list, skill tracker, and a notepad to organize projects and daily tasks related to programming and my job as well.</p>
</div>
<div class="skills">
<a name="skills"><h1>Skills</h1></a>
<div class="skill-list">
<p>HTML5 CSS3</p>
<p>Javascript</p>
<p>C</p>
<p>Python</p>
<p>Boostrap</p>
<p>Grid and Flexbox</p>
<p>Visual Studio Code</p>
<p>Git</p>
<p>SASS (familiar)</p>
<p>Flask</p>
<p>React</p>
<p>NodeJS & Express</p>
</div>
</div>
<div class="contact">
<a name="contact"><h1 class="title">Contact Me</h1></a>
<a href="mailto:[email protected]" target="blank"><i class="fas fa-envelope-square"></i></a>
<a href="https://github.com/betty-van" target="blank"><i class="fab fa-github"></i></a>
<a href="https://www.instagram.com/bettyv94/" target="blank"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/betty-van/" target="blank"><i class="fab fa-linkedin"></i></a>
</div>
<div class="footer">
<p>@ Betty Van 2019</p>
<p>All Rights Reserved.</p>
</div>
</div>
<script src="scripts.js"></script>
</body>
</html>