-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (90 loc) · 5.55 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
118
<!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="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Caveat&display=swap" rel="stylesheet">
<title>Luna's Web Spells</title>
<link rel="shortcut icon" type="image/png" href="images/crescent.png"/>
</head>
<body>
<!-- HEADER/MAIN NAV-->
<header id="top" class="main-header flex">
<h1 class="name">Luna Bee</h1>
<nav class="main-nav">
<ul class="flex">
<li><a href="#">Home</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#skills">Skills</a></li>
</ul>
</nav>
</header>
<!--PAGE CONTENT-->
<main>
<!-- Intro Top of Page-->
<div id="intro" class="intro flex">
<img src="images/portrait.jpg" alt="Portrait of Luna looking up with purle, curly hair." class="intro-img">
<p>Greetings! I study web development at Treehouse Tech via their Ubora Program. I'm studying: Front End (HTML, CSS, Javascript, Sass, UI/UX Design, Using APIs, React) and helping Non-Profits with tech. I have my Bachelors in Japanese Language and TESOL and currently work as a financial manager helping clients who have developmental disabilities.</p>
</div>
<!-- All the Portfolio Goodness-->
<div id="portfolio" class="portfolio flex">
<h2 class="headergrey">Portfolio</h2>
<div class="col"><img src="images/portfolio-1.png" class="portfolio-img" alt="Vector image of a generic grid on a webpage.">
<h3>Marketing Page</h3>
<p>This project shows the front page of a marketing website meant for a specific business I'm interested in.</p></div>
<div class="col"><img src="images/portfolio-2.png" class="portfolio-img" alt="Vector image of a search engine, such as google.">
<h3>Search Page</h3>
<p>This project searches through a specific database to find information that the user is trying to look up.</p></div>
<div class="col"><img src="images/portfolio-3.png" class="portfolio-img" alt="Vector image of a generic travel webpage.">
<h3 >Travel App</h3>
<p>This project compares travel times based on different transportation methods and tells you the best one.</p></div>
<div class="col"><img src="images/portfolio-4.png" class="portfolio-img" alt="Vector image of a generic gps or mapping program.">
<h3>Map of Favorite Spots</h3>
<p>This project uses mapping apis to plot points for my favorite spots in the city for a do-it yourself walking tour.</p></div>
<div class="col"><img src="images/portfolio-5.png" class="portfolio-img" alt="Vector image of a generic flickr or photo webpage grid">
<h3>Photo Gallery</h3>
<p>This project shows pictures from a recent trip to the view and allows them to easily navigate through photos.</p></div>
<div class="col"><img src="images/portfolio-6.png" class="portfolio-img" alt="Vector image of an online calculator.">
<h3>Calculator</h3>
<p>Someone can enter in the numbers they want, and press the big blue button and get the result.</p></div>
</div>
<!--Skills-->
<div class="skills flex" id="skills">
<h2>Skills</h2>
<p> (Psst! Click each skill to learn more about it!)</p>
<ul class="flex">
<li><a href="https://blog.teamtreehouse.com/what-is-ux-design" target="_blank">UI/UX</a></li>
<li><a href="https://blog.teamtreehouse.com/what-is-front-end-web-development" target="_blank">Front-End Dev</a></li>
<li><a href="https://www.figma.com" target="_blank">Figma</a></li>
<li><a href="https://sass-lang.com/" target="_blank">SASS</a></li>
</ul>
</div>
<!--Contact-->
<div class="contact flex" id="contact">
<h2>Contact</h2>
<p>I always want to cast more web spells! Reach out if you want to collaborate!</p>
<p>Phone +1 (111) 555-1234</p>
<p>Email email@yoursite.com</p>
</div>
</main>
<!--FOOTER-->
<footer class="flex">
<h1 class="footer-name">Luna Bee</h1>
<nav>
<ul class="footer-nav">
<li><a href="#top">Home</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#skills">Skills</a></li>
</ul>
<p class="top"><a href="#top">BACK TO TOP</a></p>
</nav>
</footer>
</body>
</html>