generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
skype-download.html
64 lines (60 loc) · 2.43 KB
/
skype-download.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
<!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>Downloding Skype</h1>
<div class="topandbotton">
<div>
<h2>How can I access Skype?</h2>
<p>
Skype can be downloaded and installed in your computer, phone, tablet or used in the web without the need to install.
The difference would be in extra features the installed app has over the web version. For a quick call or
chat, the web version is capable enough and work in older computers.
</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">
<p>To download Skype, click in the button bellow and choose your system/device:</p>
<a class="button" href="https://www.skype.com/en/get-skype/" target="_blank">Download</a>
</div>
<div class="card">
<p>If you don't want to install any program, it is possible access via Browser</p>
<a class="button" href="https://web.skype.com" target="_blank">Login</a>
</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="skype.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>