-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (111 loc) · 4.02 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
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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Sally's Resume</title>
<meta name="description" content="Sally Student's portfolio" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="main.css" />
</head>
<body>
<div class="main-div">
<header>
<h1>Sally's Resume</h1>
<h3>A Front-end Developer</h3>
</header>
<main>
<p class="padding-left">
I am an experienced front end developer specialized in HTML, CSS,
Javascript and jQuery.<br />
Feel free to see my resume and contact me, if I can be of any help.
Thanks!
</p>
<section>
<h2>Education</h2>
<div class="padding-left">
<h4>University College, London</h4>
<h6>Diploma in Front-end Technologies</h6>
<ul>
<li>
Learnt various technologies like HTML, CSS, Javascript, Python,
Django etc.
</li>
<li>
Made two major projects, one is the departmental website for
maintaining the records and another is a ticketing system
</li>
<li>
Gained knowledge about ethics of coding and learnt good teamwork
</li>
</ul>
<h4 class="edu-school">St. Mary's School, London</h4>
<h6>High School</h6>
<ul>
<li>
Learnt various subjects like Physics, Chemistry, Mathematics,
Computer Science etc.
</li>
<li>
Made one major project which helps kids to search for good
music.
</li>
<li>
Gained knowledge about ethics and societal values and learnt
good teamwork
</li>
</ul>
</div>
</section>
<section>
<h2>Work History</h2>
<div class="padding-left">
<h4>
Zoho Corporation
<span class="duration">(June 2018 - April 2019)</span>
</h4>
<h6>Junior Front-end Developer</h6>
<p>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Labore
officiis harum nesciunt, itaque laboriosam deserunt, ducimus
inventore, commodi odit eveniet culpa dolorem voluptate. Beatae
tempore vitae quas, repudiandae nihil cupiditate.
</p>
<h4>
Automatic <span class="duration">(June 2019 - Present)</span>
</h4>
<h6>Junior Front-end Developer</h6>
<p>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Labore
officiis harum nesciunt, itaque laboriosam deserunt, ducimus
inventore, commodi odit eveniet culpa dolorem voluptate. Beatae
tempore vitae quas, repudiandae nihil cupiditate.
</p>
</div>
</section>
</main>
<footer>
<section>
<h2>Contact Info</h2>
<address>
<div class="padding-left">
<h6>Name: <span class="contact">Sally Student</span></h6>
<h6>Email: <a href="mailto:[email protected]">Sally's Email</a></h6>
<h6>Phone: <span class="contact">+924564788974</span></h6>
<img
src="https://www.w3schools.com/howto/img_avatar2.png"
alt="Sally Student"
width="100"
/>
</div>
</address>
</section>
</footer>
</div>
<script src="" async defer></script>
</body>
</html>