-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (77 loc) · 3.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vertigo Studios</title>
<!-- stylesheets-->
<link rel="stylesheet" href="root.css" type="text/css">
<link rel="stylesheet" href="general.css" type="text/css">
<link rel="stylesheet" href="navbar_general.css" type="text/css">
<link rel="stylesheet" href="navbar_white.css" type="text/css">
<link rel="stylesheet" href="navbar_black.css" type="text/css">
<link rel="stylesheet" href="home_landing.css" type="text/css">
<link rel="stylesheet" href="photo-section.css" type="text/css">
<!--jquery Integration and UI-Ease -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<!--menuanimations-->
<script src="landingpage_animation.js" type="text/javascript"> </script>
</head>
<body>
<header id="header-white" class="header-white">
<h1 class="logo-white"> VERTIGOSTUDIOS </h1>
<input type="checkbox" id="nav-toggle-white" class="nav-toggle-white">
<nav class="nav-white">
<ul>
<li><a href="nav_bar_min.html">Portfolio</a></li>
<li><a href="nav_bar_min.html">Referenzen</a></li>
<li><a href="nav_bar_min.html">Kontakt</a></li>
</ul>
</nav>
<label for="nav-toggle-white" class="nav-toggle-label-white">
<span></span>
</label>
</header>
<header id="header-black" class="header-black">
<h1 class="logo-black">Vertigo</h1>
<input type="checkbox" id="nav-toggle-black" class="nav-toggle-black">
<nav class="nav-black">
<ul>
<li><a href="nav_bar_min.html">Home</a></li>
<li><a href="nav_bar_min.html">Projects</a></li>
<li><a href="nav_bar_min.html">About</a></li>
<li><a href="nav_bar_min.html">Contact</a></li>
</ul>
</nav>
<label for="nav-toggle-black" class="nav-toggle-label-black">
<span></span>
</label>
</header>
<section class="home-landing">
<div class="home-left" id="home-left">
<h1 class="home-text">Vertigo Studios
<div class="home-subtext-left">Filmproduktion</div>
<div class="home-subtext-left">Social Media</div>
</h1>
<a id="home-button-white" class="button-white" href="#"><span>get started</span></a>
</div>
<div class="home-right">
<h1 class="home-text">Vertigo Studios
<div class="home-subtext-right">Webdevelopment</div>
<div class="home-subtext-right">UI Design</div>
</h1>
<a id="home-button-black" class="button-black" href="#"><span>get started</span></a>
</div>
</section>
<section class="photo_section">
<div>
Your content
</div>
<p>
1
</p>
<p>2</p>
</section>
</body>
</html>