-
Notifications
You must be signed in to change notification settings - Fork 3
/
blog.html
45 lines (42 loc) · 1.46 KB
/
blog.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
<!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">
<link rel="stylesheet" href="./blog.css">
<link href="https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/d95bd781b4.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./index.css">
<title>Unbounce Blog | Landing Pages & Digital Marketing tips</title>
</head>
<body>
<div id="navbar-Div">
<nav class="navbar"></nav>
<div id="popUp"></div>
</div>
<div id="page">
<div id="small_screen"></div>
<div id="blogPage">
<div class="blog_heading">
<h1>Unbounce Blog</h1>
<p>The leading landing page blog since 2009.</p>
<p>Learn how to crush your marketing goals with expert advice on conversion rates, copy, design, ecommerce, and campaign strategy•</p>
</div>
<div class="display_blog_div">
<div id="display_blog">
</div>
<div class="pagination">
<button id="prevbtn"> << Prev</button>
<button id="numbtn">1</button>
<button id="nextbtn">Next >></button>
</div>
</div>
</div>
<footer class="footer">
</footer>
</div>
</body>
</html>
<script src="./blog.js" type="module"></script>
<script src="./index.js" type="module"></script>