forked from NS007-dev/webdevbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (104 loc) ยท 4.17 KB
/
index.html
File metadata and controls
113 lines (104 loc) ยท 4.17 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="./favicon.png" />
<title> Web Dev Book ๐</title>
<link rel="stylesheet" type="text/css" href="index.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="header">
<div class="logo">
<img src="./favicon.png" />
</div>
<h1>
Web Dev Book ๐
</h1>
<h3> Here is a list of websites and resources to begin your developer journey! </h3>
</div>
<div class="topnav">
<a href="./index.html">Home ๐ก</a>
<a href="./codeequip.html"> Code equipment ๐ผ </a>
<a href="./links.html">Links and resources ๐</a>
<a href="./github.html"> GitHub Sign Up</a>
<a href="./ghubprep.html"> GitHub Basics.</a>
<a href="./js.html">JavaScript Links.</a>
<a href="./html.html">HTML Links.</a>
<a href="./css.html">CSS Links.</a>
</div>
<div class="row">
<div class="leftcolumn">
<div class="card">
<h2>
Want to know about the different opportunities software engineering can give you?
</h2>
<h3>
See the list below:
</h3>
<img src="./images/mindmap.jpg" width="950" height="480" />
</h3>
<p>
<ul>
<li> Create websites! ๐</li>
<li> Create life changing apps! ๐ฑ</li>
<li> Learn multiple languages! ๐ฉโ๐ป๐จโ๐ป</li>
<li> Create your own games! ๐ฎ๐น๏ธ</li>
<li>Learn a new life skill...</li>
</ul>
</p>
</div>
<div class="card">
<h2>
The mindset an aspiring software engineer needs to be equipped with ๐ง :
</h2>
<h3>
<i>It's not just code you need to get your head around ๐ซ ...</i>
</h3>
<img src="./images/software-engineer-skills.png" style="height:500px;" />
<p>
<ul>
<li> Have plenty of endurance to complete a task. โ๏ธ</li>
<li> Organise the time to complete a code task. โ </li>
<li> Work well with others, and contribute to projects ๐</li>
<li> Be able to set reasonable and achievable targets. ๐ฏ</li>
<li> Have a love and passion for the modern world of technology! โ๏ธ</li>
<li> Be confident with mathematics! โโ</li>
</ul>
</p>
</div>
</div>
<div class="rightcolumn">
<div class="card">
<h2>
Our personal Favourite resource... ๐คฉ
</h2>
<img src="./images/w3.jpg" style="height: 200px; width: 275px;" />
<h3>With all the code examples, and docs, see here:</h3>
<a href="https://www.w3schools.com/" class="button">W3 Schools</a>
</div>
<div class="card">
<h3>
See the official documentation:
</h3>
<p>Want to see the latest releases in documentation? Click the image below for mozilla web docs!</p>
<a href="https://developer.mozilla.org/en-US/"><img src="./images/mozilla.jpg" /></a>
<h3>
See frequently asked code questions...
</h3>
<p>Stackoverflow, the home of code questions!</p>
<a href="https://stackoverflow.com/"><img src="./images/stackoverflow.png" /></a>
<h3>Welcome to your coding journey! ๐</h3>
<p>Enjoy learning to code!</p>
<img src="./images/enjoy.png" />
</div>
</div>
</div>
<div class="footer">
<img src="./favicon.png" style="height: 100px; width: 100px; float: left;" />
<h2>
Web Dev Book!
</h2>
</div>
</body>
</html>
</html>