-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
84 lines (80 loc) · 2.99 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>SPA HB Integration example</title>
<meta name="description" content="website description" />
<meta name="keywords" content="website keywords, website keywords" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="style/style.css" title="style" />
<!-- Load GPT -->
<script src="https://securepubads.g.doubleclick.net/tag/js/gpt.js" async="true"></script>
<!-- Load Prebid -->
<script src="//ascendeum.github.io/fantrax/prebid.js" async="true"></script>
<!-- <script src="prebid.js" async="true"></script> -->
</head>
<body>
<div id="main">
<div id="header">
<div id="logo">
<div id="logo_text">
<!-- class="logo_colour", allows you to change the colour of the text -->
<h1><a href="index.html">SPA<span class="logo_colour"> HB Integration example</span></a></h1>
<h2></h2>
</div>
</div>
<div id="menubar">
<ul id="menu">
<!-- put class="selected" in the li tag for the selected page - to highlight which page you're on -->
<li><a id="newPage">New Page</a></li>
<li><a id="addAdUnit">Add Adunit To The same Page</a></li>
<li><a id="pageWithoutAds">Page without Ads</a></li>
<li><a id="refreshAds">Refresh Ads</a></li>
</ul>
</div>
</div>
<div id="site_content">
<div class="sidebar">
<!-- insert your sidebar items here -->
<div id="sidebarAd1"></div>
<br>
<h3>Latest News</h3>
<h4>New Website Launched</h4>
<h5>January 1st, 2017</h5>
<p>2014 sees the redesign of our website. Take a look around and let us know what you think.<br /></p>
<p></p>
<h4>New Website Launched</h4>
<h5>January 1st, 2017</h5>
<p>2014 sees the redesign of our website. Take a look around and let us know what you think.<br /></p>
<div id="sidebarAd2"></div>
<br>
<h3>Useful Links</h3>
<ul>
<li><a href="#">link 1</a></li>
<li><a href="#">link 2</a></li>
<li><a href="#">link 3</a></li>
<li><a href="#">link 4</a></li>
</ul>
<h3>Search</h3>
<form method="post" action="#" id="search_form">
<p>
<input class="search" type="text" name="search_field" value="Enter keywords....." />
<input name="search" type="image" style="border: 0; margin: 0 0 -9px 5px;" src="style/search.png" alt="Search" title="Search" />
</p>
</form>
</div>
<div id="content">
<h2>Click on the top menu</h2>
</div>
</div>
<div id="footer">
</div>
</div>
<!-- LOAD SCRIPTS -->
<!-- jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<!-- lorem ipsum -->
<script src="lorem.js"></script>
<!-- main JS file-->
<script type="text/javascript" src="main.js"></script>
</body>
</html>