forked from prasad97/HTML-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
111 lines (101 loc) · 5.09 KB
/
index2.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
<!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>HTML5</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="resources/style/style.css" />
</head>
<body>
<header>
<img src="resources/images/html5.png" alt="HTML5 Logo" title="HTML5 Logo">
<h1>HTML5! A Beginning with Andrei</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 I take this course?</h1>
<p>I want to work as a web developer of the highest level ..<br>
There are many things that I know and know how to do perfectly,<br>
but I want to expand my skills and do more ..<br>
I want to learn REAL industry skills that are necessary in 2019 ..
</p>
<p>Sooo I hope that this course will help me to succeed ..</p>
<div id='picbox'><img id="descriptionimg"
src="https://pocketnow.com/wp-content/uploads/2017/01/PN-Complete-Web-Programming.jpg"></div>
</main>
<aside>
<br>
<h1 class="sidehead"> The Employable skills in 2019:</h1>
<ul class='ulone'>
<li class="skills">
<img src="resources/images/html5.png" alt="HTML 5">
<a href="https://www.w3schools.com/html/html5_intro.asp" /> HTML 5</a>
</li>
<li class="skills">
<img src="https://juststickers.in/wp-content/uploads/2014/05/CSS3-Mark-Shape-Cut.png" alt="CSS 3">
<a href="https://www.w3schools.com/css/"> CSS 3</a>
</li>
<li class="skills">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Boostrap_logo.svg/440px-Boostrap_logo.svg.png"
alt="Bootstrap 4">
<a href="https://www.w3schools.com/bootstrap4/"> 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">
<img src="https://raw.githubusercontent.com/rexxars/react-hexagon/HEAD/logo/react-hexagon.png"
alt="react">
<a href="https://reactjs.org/"> React </a>
</li>
<li class="skills">
<img src="http://ronvalstar.nl/wordpress/wp-content/uploads/git-icon.svg" alt="Git + Github">
<a href="https://github.com/zero-to-mastery/start-here-guidelines"> Git + Github </a>
</li>
</ul>
<ul class='ultwo'>
<li class="skills">
<img src="https://seeklogo.com/images/P/python-logo-A32636CAA3-seeklogo.com.png" alt="Python">
<a href="https://www.python.org/"> Python </a>
</li>
<li class="skills">
<img src="https://wallscover.com/images/nodejs-wallpaper-15.jpg" alt="Node.js">
<a href="https://www.w3schools.com/nodejs/nodejs_intro.asp"> Node Js </a>
</li>
<li class="skills">
<img src="http://webodile.com/wp-content/uploads/2017/12/expressjslogo.png" alt="Express js"
style="background: #333;"><a href="https://www.tutorialspoint.com/expressjs/">Express js </a>
</li>
<li class="skills">
<img src="https://avatars2.githubusercontent.com/u/6078720?s=400&v=4" alt="NPM">
<a href="https://www.w3schools.com/nodejs/nodejs_npm.asp"> NPM</a>
</li>
<li class="skills">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Postgresql_elephant.svg/1000px-Postgresql_elephant.svg.png"
alt="PostgresSQL">
<a href="https://www.tutorialspoint.com/postgresql/"> PostgresSQL </a>
</li>
<li class="skills">
<img src="https://crmtipoftheday.com/wp-content/uploads/2017/10/Database-250x250.png" alt="SQL">
<a href="https://www.w3schools.com/sql/"> SQL </a>
</li>
</ul>
</aside>
</div>
<footer>
Made by Tatyana K. <spam style="color:yellow">Re-created by Shubham Dhage.</spam> © All rights reserved ;)
</footer>
<script type="text/javascript" src="script.js"></script>
</body>
</html>