-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
129 lines (127 loc) · 5.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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./Fonts/fonts.css" />
<link rel="stylesheet" href="./CSS/main.min.css" />
<title>Document</title>
</head>
<body>
<div class="firstScreen">
<div class="container">
<header>
<div class="logo">
<h1>HubTags</h1>
<svg class="svglogo" height="17.4px" width="24.6px">
<use xlink:href="./IMG/sprites.svg#svglogo"></use>
</svg>
</div>
<button>Sign in</button>
</header>
<section class="hero">
<div class="title">
Tag HubSpot contacts, quick & easy
</div>
<div class="subTitle">
Install the chrome extension and start adding tags to your contacts
</div>
<section>
<button>Install now</button>
<button class="heroBtn">Sign in</button>
</section>
</div>
</div>
<section class="features">
<div class="container">
<div class="title">Features</div>
<ul>
<li>
<div class="decor">
<svg class="svgli" height="20px" width="20px">
<use xlink:href="./IMG/sprites.svg#svgTags"></use>
</svg>
</div>
<div class="text">Use tags to organize and find your contacts</div>
</li>
<li>
<div class="decor">
<svg class="svgli" height="20px" width="20px">
<use xlink:href="./IMG/sprites.svg#svgCsv"></use>
</svg>
</div>
<div class="text">Create tags thru CSV import</div>
</li>
<li>
<div class="decor">
<svg class="svgli" height="20px" width="20px">
<use xlink:href="./IMG/sprites.svg#svgFilter"></use>
</svg>
</div>
<div class="text">Run detailed filters without leaving the contact page</div>
</li>
</ul>
</div>
</section>
<section class="pricing">
<div class="wrapper">
<div class="container">
<div class="banner">
<div class="title">
Pricing
</div>
<div class="pricingInfo">
<span>Free</span> while we are in Beta.
</div>
</div>
</div>
</div>
</section>
<section class="faq">
<div class="container">
<div class="title">FAQ</div>
<div class="faq_items">
<div class="faq_item">
<div class="faq_item-question">How much does it cost?</div>
<div class="faq_item-answer">
<p>Free while in Beta</p>
</div>
</div>
<div class="faq_item">
<div class="faq_item-question">Do I have to create all my tags from scratch?</div>
<div class="faq_item-answer">
<p>No, if you have a list of tags you can import it. Login to HubTags and go to the import page. Here you can upload a list of tags. If desired, you can also apply the tags to contacts at the same time. </p>
<p>If your tags are stored inside a HubSpot custom property you can use the direct connect feature as a alternative. This will copy all the details from a HubSpot property and paste them into HubTags.</p>
</div>
</div>
<div class="faq_item">
<div class="faq_item-question">Do you have any training materials?</div>
<div class="faq_item-answer">
<p>Yes, we have a video tutorial covering the basics. More detailed training resources will be offered in the future. </p>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer_container">
<div class="copyright">
© Copyright HubTags 2021 | All rights reserved | <a href="#">Privacy policy and terms of use</a>
</div>
<div class="author">
<p>Created by:</p>
<a href="https://petrovdigital.io" target="_blank" class="footer_logo">
<svg class="svglogo_footer">
<use xlink:href="./IMG/sprites.svg#petrovLogo1"></use>
</svg>
<svg class="svglogo2_footer">
<use xlink:href="./IMG/sprites.svg#petrovLogo2"></use>
</svg>
</a>
</div>
</div>
</div>
</footer>
</body>
</html>