-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (94 loc) · 3.65 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
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
<!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>MimicPage</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<Header id="home" class="header-container">
<div class="topnav">
<a href="#home" class="active">Hem</a>
<div id="myLinks">
<a href="#home">Hem</a>
<a href="#about">Om</a>
<a href="#contact">Kontakt</a>
</div>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<div class="header-text">
<h2>Welcome to nature</h2>
<p>A journey through time and sheep</p>
<p>To see how ...cotton ...is imgae, made I mean</p>
</div>
</Header>
</section>
<main>
<section id="about">
<h3>Träffa laget</h3>
</section>
<div class="container">
<div class="profile-containers">
<section>
<div class="profile">
<h5>Rakib</h5>
<img src="/assets/profiles/Rakib_Square.png" alt="RakibsProfil">
<h6><p class="qoute">”</p>Rakib är vår vassaste node-utveckalre och håller ständigt ett öga på nya tekniker</h6>
</div>
<div class="profile">
<h5>Alexandra</h5>
<img src="/assets/profiles/Alexandra_Square.png" alt="AlexandrasProfil">
<h6><p class="qoute">”</p>Alexandra håller reda på alla överallt och ser till att det flyter</h6>
</div>
</section>
<section>
<div class="profile">
<h5>Lasse</h5>
<img src="/assets/profiles/NoPerson_Square.png" alt="LassesProfil">
<h6><p class="qoute">”</p>Gör övriga saker... mestadels...</h6>
</div>
<div class="profile">
<h5>Sebastian</h5>
<img src="/assets/profiles/Sebastian_Square.png" alt="SebastiansProfil">
<h6><p class="qoute">”</p>En av våra utbildare som har stor erfarenhet av ganska många</h6>
</div>
</section>
</div>
</main>
<footer>
<section id="contact">
<div class="adress">
<ul>
<li>Tegel Consulting AB</li>
<li>Agatvägen 18</li>
<li>168 60 Bromma</li>
</ul>
<ul>
<li>[email protected]</li>
<li>070-123 456 78</li>
</ul>
<ul>
<li><i style="font-size:24px" class="fa"></i> Instagram</li>
<li><i style="font-size:24px" class="fa"></i> Twitter</li>
<li><i style="font-size:24px" class="fa"></i> Facebook</li>
</ul>
</div>
</section>
</footer>
<script>
function myFunction() {
var x = document.getElementById("myLinks");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
</script>
</body>
</html>