-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (34 loc) · 990 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Split Screen</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section id="wrapper" class="skewed">
<div class="layer bottom">
<div class="content-wrap">
<div class="content-body">
<h2>peaky blinders</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
</div>
<img src="img/1.jpg" alt="">
</div>
</div>
<div class="layer top">
<div class="content-wrap">
<div class="content-body">
<h2>peaky blinders</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
</div>
<img src="img/2.jpg" alt="">
</div>
</div>
<div class="handle"></div>
</section>
<script src="js/main.js"></script>
</body>
</html>