-
Notifications
You must be signed in to change notification settings - Fork 0
/
Landing.html
51 lines (47 loc) · 1.48 KB
/
Landing.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
<html>
<head>
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/landing.css">
<script src="scripts/landing.js"></script>
</head>
<body>
<div class="center-top">
<div class="inner-div-one">
<div class="call-now">
<img src="images/phone-icon.svg" class="ph-imag"/><span>Call Now : 888.888.888</span>
</div>
</div>
<div class="break-div"></div>
<div class="inner-div-two">
<div class="vertical-center">
<span class="spn-bestdeal">Get your best deal today!</span>
</div>
</div>
</div>
<div class="center">
<div class="side-div">
<span class="txt-color"> Deals as low as</span>
<svg height="100" width="100">
<circle cx="50" cy="50" r="40" stroke="" stroke-width="3" fill="#cccc" />
<text x="50%" y="50%" text-anchor="middle" fill="white" font-size="20px" font-family="Arial" dy=".3em">$100*</text>
</svg>
</div>
<div class="center-div">
What are you looking for today? <br/><br/>
<button onclick="gotoOffers(1);">Internet</button>
<button onclick="gotoOffers(2);">Phone</button>
<button onclick="gotoOffers(3);">TV</button>
</div>
<div class="side-div right-div-text">
<ul>
<li>High Speeds</li>
<li>Reliable connection</li>
<li>Most Popular channels</li>
<li>High Speed</li>
<li>Reliable connection</li>
<li>Most Popular channels</li>
</ul>
</div>
</div>
</body>
</html>