-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (61 loc) · 2.18 KB
/
index.html
File metadata and controls
68 lines (61 loc) · 2.18 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Personal Site Project /basic/</title>
<link rel="stylesheet" href="styles.css" />
<link rel="script" href="script.js" />
</head>
<div class="container">
<header>
<h1>Fachey</h1>
<p class="subtitle"> Developer | Designer | Musician | Gamer </p>
<div class="contact-info">
<a href="empty because git restrictions">Not an Email</a> |
<a href="https://github.com/notshawns">GitHub</a> |
<a href="#">LinkedIn</a>
</div>
</header>
<section class="summary">
<h2>About Me</h2>
<p>
Enthusiastic developer learning all web and coding technologies.
<br>Passionate about building clean, minimalist and functional websites.
</p>
</section>
<section class="experience">
<h2>Experience</h2>
<div class="job">
<h3>Current Role</h3>
<span class="date">Jan 2019 - Present</span>
<p>Company Name, Location</p>
<span class="linktowebsite"><a href="linktowebsite.com"> Company Site </a></span>
<ul>
<li>Accomplishment or responsibility one.</li>
<li>Accomplishment or responsibility two.</li>
</ul>
</div>
<div class="job">
<h3>Previous Role</h3>
<span class="date">Jan 2015 - Dec 2018</span>
<p>Company Name, Location</p>
<ul>
<li>Accomplishment or responsibility one.</li>
<li>Accomplishment or responsibility two.</li>
</ul>
</div>
</section>
<section class="skills">
<h2>Skills</h2>
<ul>
<li>HTML5</li>
<li>CSS3</li>
<li>Git</li>
<li>Javascript</li>
<li>Logician</li>
</ul>
</section>
</div>
</body>
</html>