-
Notifications
You must be signed in to change notification settings - Fork 0
/
work.html
53 lines (48 loc) · 1.8 KB
/
work.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zintis May - Work</title>
<link rel="stylesheet" href="robotoFont.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>
<body class="work">
<div class="contentArea" id="contentArea">
<h1 class="headerText">Work Experience</h1>
<div class="row">
<p>Some years ago a friend of mine forgot what kind of work I did, and mentioned "well, I always thought you were
a programmer". And... that stuck with me. Enough to start studying it in 2016, and switch careers by
2017.It's been a gratifying journey (and a neverending one). It scratches my itches for challenge, creativity,
and problem solving.<br><br>Here's a selection of organizations and websites that I've worked on over the years!
</p>
</div>
</div>
</body>
<!-- assigns variable "workData" -->
<script src="data/workData.js"></script>
<script>
let contentArea = document.getElementById("contentArea")
for (let x = 0; x < workData.length; x++) {
let job = workData[x]
let content = `
<div class="floatRow">
<a href="${job.linkURL}">
<img src="images/${job.image}" alt="">
</a>
<h3>
<a href="${job.linkURL}">${job.properName} - ${job.year}</a>
</h3>
${job.description}
</div>
`
contentArea.innerHTML += content
}
</script>
<script src="addMenu.js"></script>
</html>