generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zoom-account.html
84 lines (77 loc) · 2.56 KB
/
zoom-account.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/style.css">
<title>Silver Connections</title>
</head>
<body>
<!-- The header will contain the Title for the website and a breaf introduction informing
the website mission and directions how to start -->
<header>
<h1>How to Create a Zoom Account</h1>
<div class="topandbotton">
<div>
<p>
To use Zoom, you will need to sign up for a free account.
</p>
</div>
</div>
</header>
<!-- The main section will be presenting the cards with options to be chosen by the user -->
<section class="main">
<!-- A card container created to hold all the cards and be able to make them responsible -->
<div class="card-container">
<div class="card">
<h3>Step 1:</h3>
<img class="img-size" src="assets/img/zoom/zoom-home.jpg" alt="">
<p>Open your internet browser and search for <a href="https://zoom.us" target="_blank">zoom.us</a>.</p>
</div>
<div class="card">
<h3>Step 2:</h3>
<img class="img-size" src="assets/img/zoom/zoom-sign-up.jpg" alt="">
<p>Click on the “Sign Up, It’s Free” button on the top right of the screen.</p>
</div>
<div class="card">
<h3>Step 3:</h3>
<img class="img-size" src="assets/img/zoom/zoom-email.jpg" alt="">
<p>You will be asked to type your email address in the text box provided. Once you have done this, click
the “Sign Up” button below.</p>
</div>
<div class="card">
<h3>Step 4:</h3>
<img class="img-size" src="assets/img/zoom/zoom-activate.jpg" alt="">
<p>Zoom will send you an email with a link to finish setting up your account. Click on the link and
enter your name and then enter a password.</p>
</div>
<div class="card">
<h3>Step 5:</h3>
<img class="img-size" src="assets/img/zoom/zoom-sign-in.jpg" alt="">
<p>Once you have created your account, open the Zoom app on your computer, tablet or mobile phone and
sign in with the email address and password you provided.</p>
</div>
</div>
</section>
<footer>
<div class="topandbotton">
<div id="foot">
<p>
To return to the main page or back, please click one of the buttons bellow:
</p>
<div id="double-button">
<a href="index.html">
<p class="button">HOME</p>
</a>
<a href="zoom.html">
<p class="button">BACK</p>
</a>
</div>
</div>
</div>
<div class="designby">
<p>Designed by BI Team 10 - Hackathon 2020</p>
</div>
</footer>
</body>
</html>