-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommunity.html
More file actions
84 lines (75 loc) · 3.52 KB
/
community.html
File metadata and controls
84 lines (75 loc) · 3.52 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" media="only screen and (max-width: 700px)" href="phone-style.css" /> <!-- phone style -->
<link rel="stylesheet" media="only screen and (min-width:701px) and (max-width:1100px)" href="tablet-style.css" /> <!-- table style -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <!-- jQuery include -->
<script type="text/javascript" src="script.js"></script>
<title>Bezal | Community</title>
</head>
<body>
<div class="page">
<div class="blue-bar">
<header>
<h1><a href="index.html">Bezal</a></h1>
<div id="shopping-cart">
<a href="shopping-cart.html"><img src="resources/cart.png" alt="Shopping Cart"/></a>
</div>
<nav>
<ul>
<li><a href="collection.html">the Collection</a></li>
<li><a href="story.html">our Story</a></li>
<li><a href="community.html">the Community</a></li>
<li><a href="contact.html">contact Us</a></li>
</ul>
</nav>
</header>
<div class="description">
<h2>Community</h2>
<p>
Bezal is dedicated to supporting the local community. Bezal wants to support young Vancouver artists and designers to develop their craft and hone their skills.
For the last 3 years, Bezal has opened the doors to its studio to designers from universities such as SFU, UBC and Langara in a 3 week, intensive internship.
Students are given the chance to work in a real studio, developing products for real customers.
</p>
<p>
Applications for this year's Bezal Internship are <strong>closed</strong>. We are currently in the process of selecting our intern. They can expect to be contacted by <strong>July 3</strong>.
</p>
</div>
<footer>
<!-- social media links -->
<a href=""><img src="resources/f_icon.png" alt="Facebook" /></a>
<a href=""><img src="resources/t_icon.png" alt="Twitter" /></a>
<a href=""><img src="resources/i_icon.png" alt="Instagram" /></a>
</footer>
</div><!-- blue-bar -->
<div class="main-content">
<ul id="internship">
<li>
<img src="resources/student.jpg" alt="Intern Jessica Summers hard at work"/>
<div class="internship-info">
<h2>Jessica Summers Hard at Work</h2>
<p>Last year's intern, Jessica Summers, is a 4th year student at SFU's School of Interactive Arts and Technology. Jessica designed our newest product <a href="products/aven.html">Aven</a>.</p>
</div>
</li>
<li>
<img src="resources/woodworking.jpg" alt="The tools of the trade"/>
<div class="internship-info">
<h2>Tools of the Trade</h2>
<p>Students get hands on experience with the tools and practices of real furniture designers. Lucky interns get free access to our entire studio to work on projects while they're here.</p>
</div>
</li>
<li>
<img src="resources/woodworking2.jpg" alt="Detail Oriented Work"/>
<div class="internship-info">
<h2>It's All in the Details</h2>
<p>Designing furniture this good requires a great deal of precision. Interns must be detail oriented and driven to produce the best quality products possible. At Bezal, excellence is our guarantee.</p>
</div>
</li>
</ul>
</div><!-- main-content -->
</div><!-- page -->
</body>
</html>