-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.09 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" name="viewport">
<meta content="ie=edge" http-equiv="X-UA-Compatible">
<title>Landing Page Javascript</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="preloader-gif">
<img src="preloader.gif" alt="preloader gif">
</div>
<header>
<video autoplay class="video-container" loop muted>
<source src="surf-hero-background.mp4" type="video/mp4">
</video>
<div class="header-content">
<h1 class="header-title">surfing</h1>
<p>Surfing is a surface water sport in which an individual, a surfer (or two in tandem
surfing ), uses a board to ride on the forward section, or face, of a moving wave of
water , which usually carries the surfer towards the shore.</p>
</div>
<button class="play-stop-btn" type="button">
<span>Play</span>
<span>Pause</span>
<span class="btn-slider"></span>
</button>
</header>
<script src="app.js" type="text/javascript"></script>
</body>
</html>