-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathskill-set.html
More file actions
executable file
·75 lines (75 loc) · 2.8 KB
/
skill-set.html
File metadata and controls
executable file
·75 lines (75 loc) · 2.8 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Your Name :: Skill Set</title>
<link rel="stylesheet" type="text/css" href="styles/main.css" />
</head>
<body>
<div class="container">
<header>
<div id="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>
<li><a href="contact-me.html">Contact Me</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Skill Set</h2>
<p><img src="images/dishThree.jpg" alt="" class="resize-img" /></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>
</section>
<div class="sidebar">
<p><img src="images/square200px.png" alt="Profile Picture" /></p>
<h2>Contact Details</h2>
<address>My Address</address>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborumste.
</p>
</div>
</main>
<footer>
<p>Copyright © 2024</p>
</footer>
</div>
</body>
</html>