-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (86 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap" rel="stylesheet">
<title>Alejo Designs</title>
</head>
<body>
<div class="banner">
<div class="title">
<h1>Alejo Designs</h1>
</div>
<div class="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="resume.html">Resume</a></li>
</ul>
</div>
</div>
<div class="about-me">
<div class="profile">
<div class="profile-pic">
<img src="images/alejo-profile.jpeg" width="200px" />
</div>
<div class="social-media">
<ul>
<li><a href="https://www.linkedin.com/in/alejoluis/">LinkedIn</a></li>
<li><a href="https://github.com/elzbyfar">Github</a></li>
</ul>
</div>
</div>
<div class="about-me-text">
<h2>About Me</h2>
<p>Aspiring data analyst. 10 years+ background as a signed recording artist while moonlighting as a bartender --both endeavors shared an acute focus on consumer needs. Competitive self-starter seeking to collaborate with forward-thinkers.</p>
</div>
</div>
<div class="career">
<div class="goals">
<h2>My Goals</h2>
<p>I am expanding my skill set. I love building great applications. I want to write powerful algorithms that derive meaningful conclusions from big data.</p>
</div>
<div class="skills">
<h2>My Skills</h2>
<ul>
<li>JS/React</li>
<li>React Native</li>
<li>Ruby/Rails</li>
<li>Python/Flask/Django</li>
<li>HTML/CSS</li>
<li>Photo/Music Editing</li>
</ul>
</div>
</div>
<div class="projects">
<h2>MY PROJECTS</h2>
<div class="project">
<a href="index.html"><h3>Portfolio</h3></a>
<img src="images/portfolio-screenshot.png" alt="" width="100px">
<p>This is my portfolio site</p>
</div>
<div class="project">
<a href="https://shylink.netlify.app" target="_blank"><h3>Shylink</h3></a>
<img src="images/shylink-screenshot.png" alt="" width="100px">
<p>This is a URL shortener</p>
</div>
</div>
<div class="contact-form">
<h2>Contact Me</h2>
<form action="" class="contact">
<label for="name">Enter Your Name:</label><br>
<input type="text" name="name"><br>
<label for="name">Email:</label><br>
<input type="text" name="email"><br>
<label for="message">Your Message</label><br>
<input type="text" name="message"><br>
<input type="submit" name="Contact"><br>
</form>
</div>
<div class="footer">
<p>Copyright 2020 © Alejo Designs</p>
</div>
</div>
</body>
</html>