-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (103 loc) · 4.2 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
<!DOCTYPE html>
<html>
<!-- this is the deployed version -->
<head>
<title>Dahlak's Webpage</title>
<meta charset="UTF-8">
<meta name="description" content="Resume, contact, and links">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/index.css">
</head>
<body id="body">
<div>
<h1>Dahlak Keleta</h1>
<nav class="nav-header" id="nav-header">
<ul id="nav-bar">
<a href="#about"><li>About</li></a>
<a href="#experience"><li>Experience</li></a>
<a href="#skillset"><li>Skills</li></a>
<a href="#projects"><li>Projects</li></a>
<a href="#connect"><li>Connect</li></a>
<a href="#connect"><li>Resume</li></a>
<a href="#messages"><li>Messages</li></a>
</ul>
</nav>
</div>
<section id="about" class="section">
<h2>"About"</h2>
<p>
Hi, I'm Dahlak! <br> I'm a full-stack software engineer with in-depth experience in building
web applications. <br> In a nutshell, I create websites, using agile methodologies, from concept to deployment and beyond.
I manage everything from website navigation and layout to a product's web hosting and
security architecture.<br> A few of the main languages in my tech stack are JavaScript,
React, MongoDB/PostgreSQL and of course HTML/CSS.<br>I am very organized and value clear communication<br>
and while I create well autonomously, I appreciate strive for good teamwork. I believe programing is a never-ending quest to learn and I am a lifelong learner <br>
(currently taking a course on Typescript and then plan on Ruby after that). I also love to read, being <br>
creative, working with my hands and woodworking.
</p>
</section>
<section id="experience" class="section">
<h2>"Experience"</h2>
<p>
My most recent tech builds are MyKitchen, NewHome, ShowNTell and WatchParty which can be found in my projects list below.<br>
My life experiences and projects span from service industry, business management, construction, woodworking and sales<br>
with an emphasis on art, design/layout, as well as a variety of creative endeavors. <br>
<ul id="skills">
</ul>
</p>
</section>
<section id="skillset" class="section">
<h2>"Skills"</h2>
<ul id="skillset">
<li>Organized</li>
<li>Team player</li>
<li>Excellent communicator</li>
<li>Autonomous</li>
<li>Ability to research thoroughly</li>
<li>Multi-tasker</li>
<li>Time management</li>
</ul>
</section>
<section id="projects">
<h2>Projects</h2>
<ul></ul>
</section>
<section id="connect" >
<h2>"Connect"</h2>
<ul>
<li>email- <a href="dahlakkeleta@gmail.com">dahlakkeleta@gmail.com</a></li>
<li>github- <a href="https://github.com/Dahlak76">github.com/Dahlak76</a></li>
<li>resume- <a href="https://docs.google.com/document/d/18nJbZLUZEXsYwByRkJNQfLP8uWy0GwbhTxMd6MyLigs/edit?usp=sharing">resume</a></li>
<!-- <li>resume- <a href="js/resume.pdf">resume</a></li> -->
</ul>
</section>
<section id="contact">
<h2>Leave a Message</h2>
<form id="form"name="leave_message">
<table>
<tr>
<td><label for="name">Name</label></td>
<td><input type="text" name="name" required="true"><br></td>
</tr>
<tr>
<td><label for="email">Email</label></td>
<td><input type="email" name="email" required="true"><br>
</tr>
<tr>
<td><label for="message">Message</label></td>
<td><textarea name="message" required="true"></textarea><br></td>
</tr>
<tr>
<td><button id="submit-button" type="submit">Submit</button></td>
</tr>
</table>
</form>
</section>
<section id="messages">
<h2>Messages</h2>
<ul></ul>
</section>
<footer id="footer"></footer>
<script src="js/index.js"></script>
</body>
</html>