-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (90 loc) · 3.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Arjun's Portfolio | Welcome</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://use.fontawesome.com/c1cfbbf5c8.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header id="header"></header>
<main id="main">
<div id="about">
<div id="info">
<h3>I'm...</h3>
<ul>
<li>a Front End Developer</li>
<li>a UI + UX Design Enthusiast</li>
<li>a Fledgling Javascript Programmer</li>
<li>an Alpha Male</li>
<li>a Guts (Protagonist of Berserk Anime & Manga) Fanboy</li>
</ul>
<h3>I'm committed to...</h3>
<ul>
<li>Design</li>
<li>Functional Programming</li>
<li>...and Myself</li>
</ul>
</div>
<div class="img-zone">
<img alt="Not me. But isn't he adorable?" src="https://s-media-cache-ak0.pinimg.com/236x/3c/fc/ae/3cfcae8826e6abfe9d7b9ffa2f830696.jpg">
</div>
</div>
<div id="portfolio">
<h2>Portfolio Below</h2>
<hr></hr>
<ul id="images">
<li><a href="images/portfolio.png"><img src="images/portfolio.png"></a></li>
<li><a href="http://placeholder.com"><img src="http://via.placeholder.com/350x200"></a></li>
<li><a href="http://placeholder.com"><img src="http://via.placeholder.com/350x200"></a></li>
<li><a href="http://placeholder.com"><img src="http://via.placeholder.com/350x200"></a></li>
<li><a href="http://placeholder.com"><img src="http://via.placeholder.com/350x200"></a></li>
<li><a href="http://placeholder.com"><img src="http://via.placeholder.com/350x200"></a></li>
</ul>
</div>
<div id="contact">
<h2>Want to Get in Touch?</h2>
<hr></hr>
<div id="formAndInfo">
<form novalidate>
<input type="text" name="name" placeholder="Name">
<input type="email" name="email" placeholder="Email Address">
<input type="tel" name="phone" placeholder="Phone Number">
<textarea placeholder="Message" rows="" cols=""></textarea>
</form>
<section class="info">
Note that this contact form is just props. If you'd like to contact me, drop me a message at twitter or linkedIn. I'll respond as fast as I can. Additionally, my email is [email protected]
</section>
</div>
</div>
</main>
<footer id="footer">
<section id="social">
<div>
<h3>About this page</h3>
<p>Made with <i class="fa fa-heart" aria-hidden="true"></i>
with Brunch. </p>
<p><i class="fa fa-music"></i>
helped.~</p>
</div>
<div>
<h3>Find me</h3>
<ul class="media-links">
<li><a href="https://www.linkedin.com/in/arjun-pillai-459860126/" target='_blank'><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="https://github.com/arjunepr" target='_blank'><i class="fa fa-github" aria-hidden="true"></i></a></li>
<li><a href="https://dribbble.com/JunTheProgrammer" target='_blank'><i class="fa fa-dribbble" aria-hidden="true"></i></a></li>
<li><a href="https://twitter.com/ThirdWorldCoder" target='_blank'><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
</ul>
</div>
</section>
<section id="copyright">
<span class="brand">Jun</span> © 2017. All Rights Reversed
</section>
</footer>
</body>
<script src="app.js"></script>
<script>
require('initialize');
</script>
</html>