-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (127 loc) · 5.36 KB
/
Copy pathindex.html
File metadata and controls
127 lines (127 loc) · 5.36 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Image Project</title>
<link rel="stylesheet" href="css/normalize.css">
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans|Open+Sans|Oswald|PT+Sans" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header class="main-header">
<div class="container clearfix">
<h1 class="name">Robert Weber</h1>
<nav>
<ul class="main-nav">
<li><a href="index.html">Home</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact-section">Contact</a></li>
</ul>
</nav>
</div>
</header>
<div class="wrapper">
<div class="container clearfix">
<div class="intro">
<img src="img/responsive-layout-profile.png" class="profile" alt="profile pic">
<p>Hi! I'm a front-end developer who loves responsive design and css. I recently finished a degree in front-end web development at Treehouse and am excited to put all my skills to use!</p>
</div><!--/.intro-->
<h2 id="portfolio">Portfolio</h2>
<div class="main-body">
<section>
<ul id="gallery">
<li>
<div class="marketing">
<a href="img/portfolio-1.png">
<img class="port-1" src="img/portfolio-1.png" alt="marketing page">
<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>
</a>
</div><!--/.marketing-->
</li>
<li>
<div class="search">
<a href="img/portfolio-2.png">
<img src="img/portfolio-2.png" alt="search page" class="port-2">
<h3>Search Page</h3>
<p>This project searches through a specific database to find information that the user is trying to look up.</p>
</a>
</div><!--/.search-->
</li>
<li>
<div class="travel">
<a href="img/portfolio-3.png">
<img src="img/portfolio-3.png" alt="travel page" class="port-3">
<h3>Travel App</h3>
<p>This project compares travel times based on different transportation methods and tells you the best one.</p>
</a>
</div><!--/.travel-->
</li>
<li>
<div class="maps">
<a href="img/portfolio-6.png">
<img src="img/portfolio-6.png" alt="map of fav spot" class="port-6">
<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>
</a>
</div><!--/.maps-->
</li>
<li>
<div class="photo-gallery">
<a href="img/portfolio-5.png">
<img src="img/portfolio-5.png" alt="gallery" class="port-5">
<h3>Photo Gallery</h3>
<p>This project shows pictures from a recent trip to the viewer and allows them to easily navigate through photos.</p>
</a>
</div><!--/.photo-gallery-->
</li>
<li>
<div class="calculator">
<a href="img/portfolio-4.png">
<img src="img/portfolio-4.png" alt="calc page" class="port-4">
<h3>Calculator</h3>
<p>Someone can enter in the numbers they want, and press the big blue button and get the result.</p>
</a>
</div><!--/.calculator-->
</li>
<li>
<div class="youtube">
<a href="img/portfolio-8.png">
<img src="img/portfolio-8.png" alt="videos" class="port-8">
<h3>Youtube</h3>
<p>I even have some educational videos on Youtube explaining CSS secrets that I have encountered.</p>
</a>
</div><!--/.youtube-->
</li>
<li>
<div class="treehouse">
<a href="img/portfolio-7.png">
<img src="img/portfolio-7.png" alt="workspaces" class="port-7">
<h3>Treehouse</h3>
<p>Check out some of my workspaces on Treehouse, where I continue to learn new and exciting techniques.</p>
</a>
</div><!--/.treehouse-->
</li>
<li>
</ul>
</section>
</div><!--/.main-body-->
<div class="contact">
<h4 id="contact-section">Contact</h4>
<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="phone"><a href="tel:(941)705-2452">Phone: (941)705-2452</a></li>
<li class="email"><a href="mailto:robertweber201686@gmail.com">Email: robertweber201686@gmail.com</a></li>
</ul>
</div><!--/.contact-->
</div><!--/.container-->
</div><!--/.wrapper-->
<footer class="main-footer">
<ul class="toggle">
<li><a href="index.html">Robert Weber</a></li>
<li><a href="index.html">Back to top</a></li>
</ul>
</footer>
</body>
</html>