-
Notifications
You must be signed in to change notification settings - Fork 0
/
members.html
82 lines (80 loc) · 3.57 KB
/
members.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
<html>
<head>
<title>RecipeBuddy</title>
<link rel="stylesheet" href="style.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;400;600;700;900&display=swap');
</style>
</head>
<body>
<div class="spacer"></div>
<div class="content_outer">
<div class="content_inner">
<img src="media/images/recipebuddy.png" class="logo">
<div class="inline_menu">
<a class="inline_button" href="index.html">Home</a>
<a class="inline_button" href="download.html">Download</a>
<a class="inline_button" href="faq.html">Overview</a>
<a class="inline_button" href="development.html">Development</a>
<a class="inline_button" href="members.html">Team</a>
<a class="inline_button" href="resources.html">Project Resources</a>
</div>
<div class="divider"></div>
<h2>Meet the RecipeBuddy Development Team</h2>
<div class="vertical-container">
<div class="item">
<img src="media/images/members/meif.png" class="item-picture" alt="Picture of person"
width="100%"
height="100%"/>
<div class="item-content">
<h3>Juno Meifert</h3>
<p><b>Area of expertise:</b> Project architect, backend wizardry, everything in-between</p>
</div>
</div>
<div class="item">
<img src="media/images/members/chris.png" class="item-picture" alt="Picture of person"
width="100%"
height="100%"/>
<div class="item-content">
<h3>Chris Mucci</h3>
<p><b>Area of expertise:</b> Frontend & backend, testing & demo</p>
</div>
</div>
<div class="item">
<img src="media/images/members/andy.png" class="item-picture" alt="Picture of person"
width="100%"
height="100%"/>
<div class="item-content">
<h3>Andrew Tringali</h3>
<p><b>Area of expertise:</b> Frontend & website, documentation and report management</p>
</div>
</div>
<div class="item">
<img src="media/images/members/graham.png" class="item-picture" alt="Picture of person"
width="100%"
height="100%"/>
<div class="item-content">
<h3>Graham Zarriello</h3>
<p><b>Area of expertise:</b> Database & backend</p>
</div>
</div>
<div class="item">
<img src="media/images/members/justin.png" class="item-picture" alt="Picture of person"
width="100%"
height="100%"/>
<div class="item-content">
<h3>Justin Fici</h3>
<p><b>Area of expertise:</b> Backend</p>
</div>
</div>
</div>
<div class="spacer"></div>
<div class="divider"></div>
<div class="justify_right">
<img src="media/images/crazyrecipes.png" width="200px" height="auto">
<p>A project by the CrazyRecipes team</p>
</div>
</div>
</div>
</body>
</html>