-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (117 loc) · 5.04 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
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<title>Joshua Viado</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="icon" href="/png/profile-icon.png" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="main-container">
<div class="top-half">
<div class="profile-container box">
<img class="icon" src="/png/profile-icon.png" alt="" />
<div class="typing"><h3>Hi, my name is Joshua.</h3></div>
<div style="background: red;"></div>
<p class="profile-text" style="color: rgb(97, 97, 97)">
Recent Computer Science graduate looking into getting in the field
of software development. Gained a proficiency in project management
including various programming skills throughout academic years.
</p>
</div>
<div class="skills-container box">
<img class="icon" src="/svg/skills-icon.svg" alt="" />
<p class="languages">
<span style="color: red;">Java </span>
<span>HTML </span>
<span>CSS </span>
<span>Javascript </span>
<span>ES6</span>
<span style="color: lightblue;"
>React<span style="color: blue;">Js</span></span
>
</p>
<p class="applications">
<span style="color:blueviolet">Visual-Studio/Code </span>
<span>IntelliJ-IDEA </span>
<span>Netbeans </span>
<span style="color: grey;"
>Unit<span style="color: black;">y</span></span
>
<span>Processing </span>
<span>Arduino-IDE </span>
<span style="color: yellow;"
>S<span style="color:black;">k</span>e<span style="color: black;"
>t</span
>ch
</span>
<span>Balsamiq </span>
<span>Gantt-Project </span>
<span> <span style="color: red;">MS-</span>Office </span>
</p>
</div>
<div class="project-container box">
<img class="icon" src="/svg/project-icon.svg" alt="" />
<div class="slideshow">
<a href="https://github.com/JoshuaViado/exTwitter"><img
class="slide-image"
src="/gif/exTwitter-gif-preview.gif"
alt=""
/></a>
<a href="https://github.com/JoshuaViado/Type."><img class="slide-image" src="/gif/Type..preview.gif" alt="" /></a>
</div>
</div>
</div>
<div class="bottom-half">
<div class="contacts-container box">
<img class="icon" src="/svg/contacts-icon.svg" alt="" />
<p style="color: #FF5858; font-size: 32px; font-weight: lighter;">Contacts</p>
<div class="contacts-content">
<img
class="content-icon email"
src="/svg/email-icon.svg"
alt=""
onclick="contactsClicked('email')"
/>
<img
class="content-icon phone"
src="/svg/phone-icon.svg"
alt=""
onclick="contactsClicked('phone')"
/>
<a href="https://www.linkedin.com/in/joshua-viado"
><img class="content-icon" src="/png/linkedin-logo.png" alt=""
/>
<a href="https://github.com/JoshuaViado"
><img class="content-icon" src="/png/github-logo.png" alt=""
/></a>
</div>
<p
class="contacts-output"
style="color: #FF5858; font-weight: bold;"
></p>
<p class="contacts-output2" style="color: #8D5959;"></p>
</div>
<div class="education-container box">
<img class="icon" src="/svg/education-icon.svg" alt="" />
<img class="content-icon" src="/png/mdx-logo.png" alt="" />
<p style="color: white; font-weight:lighter;">University of Middlesex Sep 2014 – Sep 2017</p>
<img class="content-icon" src="/png/egs-logo.png" alt="" />
<p style="color: white; font-weight:lighter;">Enfield Grammar School Sep 2007 – Sep 2014</p>
</div>
<div class="employment-container box">
<img class="icon" src="/svg/employment-icon.svg" alt="" />
<img class="content-icon" src="/png/dominos-logo.png" alt="" />
<p style="color: white; font-weight:lighter;">Dominos (Customer Service) Oct 2013 – Feb 2014</p>
<img class="content-icon" src="/svg/piano-icon.svg" alt="" />
<p style="color: white; font-weight:lighter;">All Talents Music School (Assistant) Oct 2011 (2 Weeks)</p>
<img class="content-icon" src="/png/woodcraft-logo.png" alt="" />
<p style="color: white; font-weight:lighter;">Woodcraft Folk Youth Club (Supervisor) April 2013 – Feb 2014</p>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>