-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (75 loc) · 3.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Dog Company</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="page">
<div>
<div class="header">
<h1 class="header-titel">The Dog Company 🐶</h1>
<a href="https://youtu.be/dQw4w9WgXcQ" class="header-link">About</a>
<a href="https://youtu.be/dQw4w9WgXcQ" class="header-link">Team</a>
<a href="https://youtu.be/dQw4w9WgXcQ" class="header-link header-impressum">Impressum</a>
</div>
<div class="about">
<div class="company-about">
<p class="welcome-about">Welcome at our company!</p>
<p class="startup-about">We are a young startup. Lead by dogs for dogs.
Our Company helps Dogs to start in the Tech-industrie and learn programming. We are hiring!</p>
<button class="button-about">
<a href="https://youtu.be/dQw4w9WgXcQ" class="button-link">Apply now!</a>
</button>
</div>
<div class="company-image">
<img class="office-image" src="./img/office.jpg" alt="Office meeting room">
</div>
</div>
<div class="team">
<h2 class="team-title">Our Team:</h2>
<div class="team-pictures">
<div class="team-ceo">
<img class="dog-images" src="./img/brown-dog-1.jpg" alt="Brown Dog sitting on chair">
<p>CEO | Leo</p>
</div>
<div class="team-cto">
<img class="dog-images" src="./img/clothes-dog.jpg" alt="Dog with clothes on">
<p>CTO | Max</p>
</div>
<div class="team-cfo">
<img class="dog-images" src="./img/hair-dog.jpg" alt="Dog with long hair.">
<p>CFO | Cindy</p>
</div>
<div class="team-coo">
<img class="dog-images" src="./img/black-dog-1.jpg" alt="Black dog">
<p>COO | Jacky</p>
</div>
</div>
</div>
<div class="quotes">
<p class="quote-text">"What do dogs do on their day off? <br>
Can't lie around—that's their job."</p>
<p class="quote-autor">-George Carlin</p>
</div>
<div class="action">
<div class="border-field">
<div class="field">
<h2 class="field-main">Call to action! It's time! </h2>
<p class="field-text">Apply now for our company by clicking that button right over there!</p>
</div>
<button class="field-button">
<a href="https://youtu.be/dQw4w9WgXcQ" class="field-link" >Apply now!</a>
</button>
</div>
</div>
<div class="footer">
<p class="footer-love">
Made with 💚 from Frittenfred
</p>
</div>
</div>
</body>
</html>