-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (72 loc) · 2.9 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
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./styles.css">
<link href="https://fonts.googleapis.com/css?family=Lexend+Mega" rel="stylesheet" type="text/css">
<title>Home</title>
</head>
<body>
<h1 class="title">The VC Experience</h1>
<nav class="navigation">
<p><a href="#head">Mission Statment</a></p>
<p><a href="#portfolio">Portfolio</a></p>
<p><a href="#team">Investment Team</a></p>
</nav>
<div class="head">
<div class="extra">
<h2>The VC Experience</h2><br>
<h3>Our fund is committed to the furthering entrepreneurs in the mobility sector.</h3>
</div>
</div>
<div class ="portfolio-before">
<h2>Our Mobility Portfolio</h2>
<h3>Impacting diverse sectors of mobility to better the human experience and the world we inhabit</h3>
</div>
<div class="portfolio" id="portfolio">
<div class="company">
<img src="https://codecademy-content.s3.amazonaws.com/PRO/independent-practice-projects/flexbox-business-site/img/hangar.jpg" />
<p>AeroArgonauts</p>
</div>
<div class="company">
<img src="https://codecademy-content.s3.amazonaws.com/PRO/independent-practice-projects/flexbox-business-site/img/dashboard.jpg" />
<p>AutoBueno</p>
</div>
<div class="company">
<img src="https://codecademy-content.s3.amazonaws.com/PRO/independent-practice-projects/flexbox-business-site/img/blurred-lights.jpg" />
<p>LaneChatter</p>
</div>
<div class="company" id="kolo">
<img src="https://codecademy-content.s3.amazonaws.com/PRO/independent-practice-projects/flexbox-business-site/img/tires.jpg" />
<p>TigerTreads</p>
</div>
<div class="company">
<img src="https://codecademy-content.s3.amazonaws.com/PRO/independent-practice-projects/flexbox-business-site/img/truck.jpg" />
<p>ValetToday</p>
</div>
</div>
<h2>Our Team</h2>
<div class="team-container">
<div class="team" id ="team">
<img src="https://codecademy-content.s3.amazonaws.com/PRO/independent-practice-projects/flexbox-business-site/img/employee-one.jpg">
<h4>Lisa Fischer</h4>
<h5>C.E.O. - Founder and Principal Investor</h5>
</div>
<div class ="team">
<img src="https://codecademy-content.s3.amazonaws.com/PRO/independent-practice-projects/flexbox-business-site/img/employee-two.jpg">
<h4>Alex Lasker</h4>
<h5 class="black">Partner - Research & Development</h5>
</div>
<div class ="team">
<img src="https://codecademy-content.s3.amazonaws.com/PRO/independent-practice-projects/flexbox-business-site/img/employee-three.jpg">
<h4>Omar Carlsen</h4>
<h5>Partner - Partnerships & Marketing</h5>
</div>
</div>
</body>
<footer>
<h6>Mail: [email protected]</h6>
<h6>555-867-5309</h6>
<h6>Copyright VC Enterprises 2020</h6>
</footer>
</html>