forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (87 loc) · 3.02 KB
/
index.html
File metadata and controls
87 lines (87 loc) · 3.02 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<header>
<h1 id="title">THE PAGE</h1>
<p>This page was made to show some kind of practical skills</p>
</header>
<main>
<section>
<article id="artc1" class="articles">
<h2>
<a href="https://github.com" target="_blank"> GitHub</a>
</h2>
<p>
GitHub, Inc. is an Internet hosting service for software development
and version control using Git. It provides the distributed version
control of Git plus access control, bug tracking, software feature
requests, task management, continuous integration, and wikis for
every project.
</p>
<img src="/GitHub-Mark.png" alt="GitHubLogo" class="logos" />
</article>
</section>
<section>
<article id="artc2" class="articles">
<h2>
<a href="https://code.visualstudio.com" target="_blank"> VS Code</a>
</h2>
<p>
Visual Studio Code, also commonly referred to as VS Code, is a
source-code editor made by Microsoft with the Electron Framework,
for Windows, Linux and macOS. Features include support for
debugging, syntax highlighting, intelligent code completion,
snippets, code refactoring, and embedded Git.
</p>
<img
src="/visualstudio_code-ar21.png"
alt="GitHubLogo"
class="logos"
/>
</article>
</section>
<section>
<article id="artc3" class="articles">
<h2>
<a href="https://slack.com/intl/en-gb" target="_blank">Slack</a>
</h2>
<p>
Slack is an instant messaging program designed by Slack Technologies
and owned by Salesforce. Although Slack was developed for
professional and organizational communications, it has also been
adopted as a community platform.
</p>
<img src="/slack-logo.png" alt="GitHubLogo" class="logos" />
</article>
</section>
</main>
<footer>
<div id="madeby">
<p>Page made by Artem</p>
</div>
</footer>
</body>
</html>