-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (108 loc) · 5.97 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>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Portfolio of Jason Anthony</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="shortcut icon" type="image/x-icon" href="../favicon.ico" />
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700&display=swap" rel="stylesheet">
</head>
<body>
<div id="container">
<header>
<div class="half-width hero-tag">
<h1>Heya! <span>I'm Jason Anthony</span></h1>
<h2>the web developer who will be hand-coding <span>YOUR</span> website!</h2>
</div>
<div class="half-width nav">
<nav>
<ul>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#about-me">About Me</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="portfolio">
<h3>Portfolio</h3>
<div class="full-width">
<div class="half-width">
<a href="sookjai-project/index.html"><img class="portfolio-image" src="img/sookjai-blue.jpg" alt="Sookjai Logo"/></a>
</div>
<div class="half-width portfolio-text">
<h4><span>Sookjai Music Logo</span><br>Logo Design & Handrawn and Vector Logo</h4>
<p>A handrawn minimalist logo for a music school. The treble clef is hand-drawn and project is completed using Adobe Illustrator.</p>
<a href="sookjai-project/index.html">Click HERE to see more!</a>
</div>
</div>
<div class="full-width">
<div class="half-width">
<a href="https://jasona-work.github.io/jubilee-austen/" target="_blank"><img class="portfolio-image" src="img/jubilee-thumbnail.jpg" alt="jubilee-austen"/></a>
</div>
<div class="half-width portfolio-text">
<h4><span>Jubilee Austen Project</span><br>HTML & CSS Website</h4>
<p>This is an elegant one-page self introduction website with hand-coded HTML and CSS.</p>
<a href="https://jasona-work.github.io/jubilee-austen/" target="_blank">Click HERE to see the real site!</a>
</div>
</div>
<div class="full-width">
<div class="half-width">
<a href="avpa/index.html"><img class="portfolio-image" src="img/avpa-calendar.jpg" alt="AVPA Calendar"/></a>
</div>
<div class="half-width portfolio-text">
<h4><span>AVPA Calendar</span><br>Icon and Calendar Design for a Music School</h4>
<p>One project from a year's worth of graphic design contract. I designed this company's logo, color scheme, beautified and branded countless documents.</p>
<a href="avpa/index.html">Click HERE to see more!</a>
</div>
</div>
</section>
<section id="about-me">
<h3>About Me</h3>
<div class="full-width">
<div class="half-width">
<img class="about-me-img" src="img/about-me-picture.png" alt="jasons-picture"/>
</div>
<div class="half-width">
<h4>Designer, Developer and UX Enthusiast</h4>
<p>I’ve been dabbing, tinkering and freelancing with designing and coding since 2010.</p>
<p>Holler if you need any of this done! And if you have a UX gig, let me know! That's where I'm headed right now! <strong>So.. what's good?</strong></p>
<ul>
<li>Hand-coding HTML and CSS</li>
<li>Coding based on design comps</li>
<li>Collaborating through Github</li>
<li>Designs with Photoshop and InDesign</li>
<li>An eye for excellent UI/UX</li>
<li>Creative, detail-oriented and ready to <strong>get to work!</strong></li>
</ul>
</div>
</div>
</section>
<footer id="contact">
<div class="full-width">
<h3>Let's Connect</h3>
<div class="third-width">
<h4>Hire Me</h4>
<p>hello@jasonanthony.work</p>
</div>
<div class="third-width">
<h4>Follow Me</h4>
<div class="social-icons">
<a href="https://www.linkedin.com/in/jasonanthony10/" target="_blank"><img src="img/linkedin-icon.png" alt="linked-in-icon"/></a>
<a href="https://github.com/JasonA-work" target="_blank"><img src="img/github-icon.png" alt="github-icon"/></a>
<a href="https://www.behance.net/jasonanthony2" target="_blank"><img src="img/behance-icon.png" alt="behance-icon"/></a>
</div>
</div>
<div class="third-width">
<h4>Meet Me</h4>
<p>Bangkok, Thailand<br>OR anywhere online!</p>
</div>
<div class="full-width copyright">
<p>Copyright 2020 | Jason Anthony</p>
</div>
</div>
</footer>
</div>
</body>
</html>