-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
68 lines (60 loc) · 2.66 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
<!DOCTYPE html>
<html>
<head>
<title>Week 03 | Mums in Tech</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="page">
<header class="primary">
<div class="container">
<h1>
<strong>Mums in Tech</strong><span class="seperator"> | </span><em>Week 03</em>
</h1>
</div>
</header>
<section class="content">
<div class="container">
<h2>What have we covered so far…</h2>
<ul>
<li class="topic">
<h4 class="topic-title">What's <abbr title="Hypertext Markup Language">HTML</abbr></h4>
<p>
We have now covered <strong>HTML</strong>, including: what it is; how to write it and why
it's important to try and keep the semantic meaning of our HTML whilst separating the visual
information and design.
</p>
</li>
<li class="topic">
<h4 class="topic-title">The Terminal</h4>
<p>
With a harrowing journey through the beggining of the terminal, we have covered how to
navigate directories using <code>cd</code> to change directories, <code>ls</code> to
list directory contents and have started to feel more confidant when faced with a terminal
window.
</p>
</li>
<li class="topic">
<h4 class="topic-title">Version control with Git</h4>
<p>
The introduction to Git covered why it is used <em>(tracking changes)</em> as well as the impact it
can have when working in a team (<em>branches, merging, pushing and pulling</em>). Some have
been able to progress to actually publishing their own code onto <a href="https://github.com">GitHub</a>
which is a fantastic milestone!
</p>
</li>
<li class="topic">
<h4 class="topic-title">Styling with <abbr title="Cascading Style Sheets">CSS</abbr></h4>
<p>
The way a HTML page looks is powered primarily by the <strong>CSS</strong> used. There are a huge number
of <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Reference">CSS properties</a> and many
small differences between web browsers. These are things that are learn over time, the important thing to
do is try. Search, checkout examples even inspect other sites to see how they have done it.
</p>
</li>
</ul>
</div>
</section>
</div>
</body>
</html>