-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
120 lines (120 loc) · 3.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mini Portfolio</title>
<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=Poppins:wght@300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
</head>
<body>
<section class="hero">
<img
id="toggleTheme"
class="theme-btn"
src="assets/theme_light.png"
alt="theme icon"
/>
<div class="hero-pic">
<div class="inner-circle"></div>
<img
src="assets/mason-wilkes-TMgQMXoglsM-unsplash.jpg"
alt="Mason Wilkes"
/>
</div>
<div class="hero-info">
<h1>Mason Wilkes</h1>
<h2>Frontend Developer</h2>
<div class="logo-container">
<a href="https://github.com/"
><img src="assets/github_light.png" alt="github logo"
/></a>
<a href="https://linkedin.com/"
><img src="assets/linkedin_light.png" alt="linkedin logo"
/></a>
<a href="mailto:abc@gmail.com"
><img src="assets/email_light.png" alt="email logo"
/></a>
</div>
</div>
</section>
<section class="experience">
<h2><b>3</b><br />Years<br />Frontend</h2>
<h2><b>5</b><br />Years<br />B.Sc. & M.Sc.</h2>
<h2><b>4</b><br />Satisfied<br />Employers</h2>
</section>
<section class="cta">
<a href="assets/example-cv.pdf" download>
<button class="btn download-btn">Download CV</button>
</a>
<a href="mailto:abc@gmail.com"
><button class="btn contact-btn">Contact Me</button></a
>
</section>
<section class="portfolio-skills">
<div class="btn-bg">
<button class="btn-2 active-btn" id="portfolio-btn">Portfolio</button>
<button class="btn-2" id="skills-btn">Skills</button>
</div>
</section>
<section class="portfolio" id="portfolio">
<div class="wrapper project-wrapper">
<a href="https://github.com/"
><img src="assets/project-1.png" alt="Project 1"
/></a>
</div>
<div class="wrapper project-wrapper">
<a href="https://github.com/"
><img src="assets/project-2.png" alt="Project 2"
/></a>
</div>
<div class="wrapper project-wrapper">
<a href="https://github.com/"
><img src="assets/project-3.png" alt="Project 3"
/></a>
</div>
<div class="wrapper project-wrapper">
<a href="https://github.com/"
><img src="assets/project-4.png" alt="Project 4"
/></a>
</div>
</section>
<section class="skills" id="skills">
<div class="wrapper">
<h3>Frontend</h3>
<article class="frontend-skills">
<p>HTML</p>
<p>CSS</p>
<p>SASS</p>
<p>LESS</p>
<p>JavaScript</p>
<p>TypeScript</p>
<p>React</p>
<p>Angular</p>
<p>Material UI</p>
</article>
</div>
<div class="wrapper">
<h3>Backend</h3>
<article class="backend-skills">
<p>Node.js</p>
<p>Express.js</p>
<p>APIs</p>
<p>Database CRUD</p>
<p>Git</p>
<p>GraphQL</p>
<p>Web Servers</p>
</article>
</div>
</section>
<footer>
<p>© Mason Wilkes 2023</p>
</footer>
</body>
</html>