-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
84 lines (79 loc) · 3.2 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
<!DOCTYPE html>
<html>
<head>
<title>CAMPLIFE</title>
<link rel="icon" href="icons/helmet.svg" type="image/icon type">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="header">
<section class="main">
<a class="logo"><img src="icons/helmet.svg" height="30px"></a>
<div class="fix" >
<a class="a1" href="#id-contact">CONTACT US</a>
<div class="dropdown">
<span><h2>EVENT</h2></span>
<div class="dropdown-content">
<a href="#">PAINTBALL</a>
<a href="#">NERF</a>
<a href="#">GLOW SPORTS</a>
<a href="#">BUNGEE</a>
</div>
</div>
<a class="a1" href="#">ABOUT US</a>
<a class="a1" href="#">HOME</a>
</div>
</section>
<div class="fix-background" id="id-navi"></div>
<div class="banner">
<h1 class="banner-title">CAMPLIFE</h1>
<h3 class="banner-subtitle">"boost the adrinaline"</h3>
</div>
<video autoplay muted loop id="myVideo">
<source src="Background.mp4" type="video/mp4">
</video>
</header>
<section class="skills">
<!-- single skill -->
<article class="skill1">
<center><img src="icons/ferris-wheel (1).svg" height="45px"></center><br>
<h3 class="skill-title">adventure</h3>
<p class="skill-text">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Obcaecati,
porro.
</p>
</article>
<!--end single skill -->
<!-- single skill -->
<article class="skill2">
<center><img src="icons/sunbathing.svg" height="45px"></center><br>
<h3 class="skill-title">relexation</h3>
<p class="skill-text">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Obcaecati,
porro.
</p>
</article>
<!--end single skill -->
<!-- single skill -->
<article class="skill1">
<center><img src="icons/power-bank.svg" height="45px"></center><br>
<h3 class="skill-title">recharge</h3>
<p class="skill-text">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Obcaecati,
porro.
</p>
</article>
<!--end single skill -->
<!-- single skill -->
<article class="skill2">
<center><img src="icons/bungee-jumping.svg" height="45px"></center><br>
<h3 class="skill-title">adrinaline rush</h3>
<p class="skill-text">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Obcaecati,
porro.
</p>
</article>
<!--end single skill -->
</section>
</body>
</html>