-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
155 lines (114 loc) · 5.22 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Student Profile</title>
<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/css?family=Indie+Flower%7CRoboto:300,400,900" rel="stylesheet">
</head>
<body>
<header class="clearfix">
<h1>Student Name</h1>
<nav class="main-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<img src="images/responsive-layout-profile.png" alt="Profile-Image" class="profile-image"/>
<p class="personal-statement">Hi! I'm a front-end developer who loves responsive design and css. I am currently studying a degree in front-end web development at Treehouse and am excited to put all my skills to use!</p>
</header>
<!-- MAIN -->
<main>
<h2 class="portfolio-title"><a id="portfolio">Portfolio</a></h2>
<figure>
<img src="images/portfolio-1.png" alt="Marketing-Page-Project-Image" />
<h3>Marketing Page</h3>
<figcaption>This project shows the front page of a marketing website meant for a specific business I'm interested in.</figcaption>
</figure>
<figure>
<img src="images/portfolio-2.png" alt="Search-Page-Project-Image" />
<h3>Search Page</h3>
<figcaption>This project searches through a specific database to find information that the user is trying to look up.</figcaption>
</figure>
<figure>
<img src="images/portfolio-3.png" alt="Travel-App-Project-Image" />
<h3>Travel App</h3>
<figcaption>This project compares travel times based on different transportation methods and tells you the best one.</figcaption>
</figure>
<figure>
<img src="images/portfolio-4.png" alt="Map-of-Favourite-Spots-Project-Image" />
<h3>Map of Favourite Spots</h3>
<figcaption>This project uses mapping apis to plot points for my favourite spots in the city for a do-it-yourself walking tour.</figcaption>
</figure>
<figure>
<img src="images/portfolio-5.png" alt="Photo-Gallery-Project-Image" />
<h3>Photo Gallery</h3>
<figcaption>This project shows pictures from a recent trip to the viewer and allows them to easily navigate through photos.</figcaption>
</figure>
<figure>
<img src="images/portfolio-6.png" alt="Calculator-Project-Image" />
<h3>Calculator</h3>
<figcaption>Someone can enter in the numbers they want, and press the big blue button and get the result.</figcaption>
</figure>
</main>
<!-- SKILLS -->
<aside>
<div class="wrapper">
<h2 class="skills-title"><a id="skills">Skills</a></h2>
<div class="skill-info">
<p>I am currently studying a Tech-degree in Front-End Web Development with Team Treehouse. The degree covers HTML CSS and JavaScript. I am now in the process of completing my second project out of 12.</p>
<p>Below is a list of my skill levels within the coding languages I am learning.</p>
</div>
<!-- SKILL LEVEL INDICATORS -->
<div class="skill-points">
<!-- HTML Skill Points -->
<p>HTML</p>
<div class="point-container">
<div class="point-bar html">
<img src="images/Skill-Level-percent.png" alt="Skill-Level-Indicator" class="skill-level-indicator"/>
<p class="skill-percent">70%</p>
</div>
</div>
<!-- CSS Skill Points -->
<p>CSS</p>
<div class="point-container">
<div class="point-bar css">
<img src="images/Skill-Level-percent.png" alt="Skill-Level-Indicator" class="skill-level-indicator"/>
<p class="skill-percent">60%</p>
</div>
</div>
<!-- JAVASCRIPT Skill Points -->
<p>JavaScript</p>
<div class="point-container">
<div class="point-bar js">
<img src="images/Skill-Level-percent.png" alt="Skill-Level-Indicator" class="skill-level-indicator diy"/>
<p class="skill-percent">30%</p>
</div>
</div>
</div>
</div>
</aside>
<!-- FOOTER -->
<footer>
<h2 class="contact"><a id="contact">Contact</a></h2>
<p class="contact-p">If you're interested in chatting or want more information about what I've been working on, I'd love to hear from you!</p>
<ul class="contact-info">
<li class="info"><a href="tel:+1(111)555-1234">Phone <strong>+1(111)555-1234</strong></a></li>
<li class="info"><a href="mailto:[email protected]">Email <strong>[email protected]</strong></a></li>
</ul>
<p class="student-name">Student Name</p>
<p class="back-to-top"><a href="#">Back To Top</a></p>
<ul class="footer-nav">
<li><a href="index.html">Home</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</footer>
</body>
</html>