-
Notifications
You must be signed in to change notification settings - Fork 0
/
squareSpace.html
105 lines (104 loc) · 5.3 KB
/
squareSpace.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
<!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" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous" />
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="bootstrap/js/jquery.js"></script>
<script src="bootstrap/js/bootstrap-alert.js"></script>
<script src="bootstrap/js/bootstrap-modal.js"></script>
<script src="bootstrap/js/bootstrap-transition.js"></script>
<script src="bootstrap/js/bootstrap-tooltip.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("body").tooltip({ selector: '[data-toggle=tooltip]' });
});
</script>
<link rel="stylesheet" href="css/style.min.css" />
<title>Where to host: Squarespace</title>
<link rel="shortcut icon" type="image/jpg" href="img/logo.png"/>
</head>
<body>
<main class="container-fluid">
<div class="row">
<div class="col-2 navBar">
<div class="row user">
<div class="col-12 d-flex justify-content-center">
<img
class="user__pic"
src="img/logo.png"
alt="Sample User"
/>
</div>
</div>
<div class="row nav">
<div class="col-12">
<a href="index.html"><h4 class="nav__link">Home</h4></a>
<a href="logoPage.html"
><h4 class="nav__link">Logo Creation</h4></a
>
<a href="namePage.html"
><h4 class="nav__link">Name Generator</h4></a
>
<a href="resourcesPage.html"
><h4 class="nav__link_active">Resources</h4></a
>
</div>
</div>
<div class="row navExtra">
<div class="col-12">
<a href=" mailto:virtual_venture_contact "
><h4 class="navExtra__link">Contact Us</h4></a
>
</div>
</div>
</div>
<!--Extra col-2 to push everything over after making nav sticky-->
<div class="col-2"></div>
<div class="col-10">
<div class="row">
<div class="col-12">
<div class="introMessage">
<h1 class="introMessage__title">Where to host your website: Shopify</h1>
<p class="introMessage__message">
Choosing the website hosting service that is the right fit for you can be a hard process. In this article, we will walk you
through another great option: Squarespace.
</p>
</div>
</div>
<div class="row">
<div class="col-12">
<br>
<p class="indent ml-40">
Why should I not just go with any old hosting service? <a href="https://www.squarespace.com" target="_blank">Squarespace</a> has been in the website hosting business
for a very long time. Working with a brand with that much notoriety can help out business owners at ease. Despite all their experience, Squarespace is still has pros and cons:
</p>
<h5>Pros</h5>
<p>
<li>Squarespace offers a massive amount of templates and fonts to use so that you can customize your website to your liking</li>
<li>Squarespace offers a unique blogging feature that can be used for promotional or announcement purposes</li>
<li>There is no prior coding experience required to build your website</li>
<li>Squarespace has long-lasting <a href="#" data-toggle="tooltip" title="The familiarity of customers with a specific product or service"><b>brand notoriety</b></a></li>
</p>
<h5>Cons</h5>
<p>
<li>There have been reports of Squarespace websites running slow on certain devices</li>
<li>If your goal is to have multiple menus on your website, Squarespace may be difficult to use</li>
</p>
<br>
<p>
Before you decide on a service to host your website on, it is important to research <em>all</em> of the options in order to choose what is right for your company.
</p>
</div>
</div>
</div>
</div>
</div>
</main>
</body>
</html>