-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathskill-set.html
More file actions
executable file
·63 lines (63 loc) · 2.01 KB
/
skill-set.html
File metadata and controls
executable file
·63 lines (63 loc) · 2.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Your Name :: Skill Set</title>
</head>
<body>
<div class="container">
<div class="header">
<div class="logo">
<h1><a href="#">Your Name</a></h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="qualifications.html">Qualifications</a></li>
<li><a href="skill-set.html">Skill Set</a></li>
<li><a href="work-experience.html">Work Experience</a></li>
</ul>
</nav>
</div>
<div class="content">
<div class="section">
<h2>Skill Set</h2>
<p><img src="images/dishThree.jpg" alt="Jodrell Bank" /></p>
<dl>
<dt>HTML</dt>
<dd>
HyperText Markup Language, commonly referred to as HTML, is the
standard markup language used to create web pages. Proficient in
HTML5
</dd>
<dt>CSS</dt>
<dd>
CSS is a stylesheet language that describes the presentation of an
HTML (or XML) document. CSS describes how elements must be
rendered on screen, on paper, or in other media.
</dd>
<dt>Javascript</dt>
<dd>
JavaScript is the programming language of HTML and the Web.
Programming makes computers do what you want them to do.
JavaScript is easy to learn.
</dd>
<dt>SQL</dt>
<dd>
Structured Query Language is a special-purpose programming
language designed for managing data held in a relational database
management system (RDBMS).
</dd>
</dl>
</div>
<div class="sidebar">
<h2>Contact Details</h2>
<address>My Address</address>
</div>
</div>
<div id="footer">
<p>Copyright © 2024</p>
</div>
</div>
</body>
</html>