-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (102 loc) · 4.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Responsive Layout Project</title>
<link href="https://fonts.googleapis.com/css?family=Quicksand:700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header class="main-header">
<div class="container clearfix">
<h1 class="name"><a href="#">Bas Kardinaal</a></h1>
<nav class="main-nav">
<ul>
<li><a href="#">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>
</div>
</header>
<main>
<div class="about">
<div class="container clearfix">
<img class="feat-img" src="img/responsive-layout-profile.png" alt="Picture about Bas Kardinaal">
<p>Hi! I'm a front-end developer who loves repsonsive design and css. I recently finished learing front-end web development at Treehouse and am excited to put all my skills to use!</p>
</div>
</div>
<div class="portfolio" id="portfolio">
<div class="container clearfix">
<h3>Portfolio</h3>
<div class="col">
<a href="#"><img src="img/portfolio-1.png" alt="Marketing Page"></a>
<h2>Marketing Page</h2>
<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">
<a href="#"><img src="img/portfolio-2.png" alt="Search Page"></a>
<h2>Search Page</h2>
<p>This project searches through a specific database to find information that the user is trying to look up.</p>
</div>
<div class="col">
<a href="#"><img src="img/portfolio-3.png" alt="Travel App"></a>
<h2>Travel App</h2>
<p>This project compares travel times based on different transportation methods and tells you the best one.</p>
</div>
<div class="col">
<a href="#"><img src="img/portfolio-4.png" alt="Map of Favorite Spots"></a>
<h2>Map of Favorite Spots</h2>
<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">
<a href="#"><img src="img/portfolio-5.png" alt="Photo Gallery"></a>
<h2>Photo Gallery</h2>
<p>This project shows pictures from a recent trup to the viewer and allows them to easily navigate through photos.</p>
</div>
<div class="col">
<a href="#"><img src="img/portfolio-6.png" alt="Calculator"></a>
<h2>Calculator</h2>
<p>Someone can enter in the numbers they want, and press the big blue button and get the result.</p>
</div>
</div> <!-- end container -->
</div>
<div class="skills" id="skills">
<div class="container">
<h3>Skills</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quas iure dolore dolor omnis. Tempora porro laboriosam, neque velit assumenda, impedit dolores veritatis perspiciatis voluptates ullam expedita mollitia fuga, atque ipsa.</p>
<ul class="skills-list">
<li>HTML</li>
<li>CSS</li>
<li>CSS3</li>
<li>Javascript</li>
</ul>
</div>
</div>
<div class="container">
<div class="contact" id="contact">
<h3>Contact</h3>
<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>
<p><span>Phone</span> <a href="tel:+1(111)555-1234">+1(111)555-1234</a></p>
<p><span>Email</span> <a href="mailto:[email protected]?subject=Mail%20from%20yoursite">[email protected]</a></p>
</div>
</div>
</main>
<div class="container">
<footer class="main-footer clearfix">
<p class="footer-name">Bas Kardinaal</p>
<a href="#top">Back to top</a>
<ul class="footer-nav">
<li><a href="#top">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>
</div>
</body>
</html>