-
Notifications
You must be signed in to change notification settings - Fork 0
/
wix.html
104 lines (103 loc) · 5.22 KB
/
wix.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
<!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: Wix</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: Wix</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 yet <em>another</em> great option: Wix.
</p>
</div>
</div>
<div class="row">
<div class="col-12">
<br>
<p class="indent ml-40">
<a href="https://www.wix.com" target="_blank">Wix</a> is the last of the <a href="#" data-toggle="tooltip" title="The three most popular website hosting services"><b>"Big Three"</b></a>.
Wix is known to the proffessionals as an extremely solid choice for hosting. Despite this, even they have pros and cons:
</p>
<h5>Pros</h5>
<p>
<li>Wix offers great features to view edits to your website live as you make them</li>
<li>Using Wix gives a lower cost to get your website up and running</li>
<li>There is no prior coding experience required to build your website</li>
</p>
<h5>Cons</h5>
<p>
<li>Wix does not provide <a href="#" data-toggle="tooltip" title="A process in which a service proccesses your website data in order to aid your business"><b>deep analytics</b></a> for your website</li>
<li>It can be difficult to switch website <a href="#" data-toggle="tooltip" title="A framework from which you build your website off of"><b>templates</b></a> after you have already published your site using one</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>