-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
178 lines (172 loc) · 5.5 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<title>My Portfolio</title>
</head>
<body>
<div class="container">
<header class="navbar">
<a href="#">Dan Logo</a>
<span> <img src="images/burger.png" alt="toggle icon" /> </span>
</header>
<section class="header">
<div class="header-title">
<h1>Hey there. I'm Dan Elifeleti</h1>
<h2 class="green">I'm a software developer</h2>
</div>
<div class="header-content">
<p>
I can help you build a product , feature or website Look through
some of my work and experience! If you like what you see and have a
project you need coded, don’t hestiate to contact me.
</p>
</div>
<div class="icon-style">
<ul class="icons">
<li>
<a href="#"><img src="images/git-logo.png" alt="cat icon" /></a>
</li>
<li>
<a href="#"><img src="images/linkedin.png" alt="linkldn icon" /></a>
</li>
<li>
<a href="#"><img src="images/vector.png" alt="two icon" /></a>
</li>
<li>
<a href="#"><img src="images/twitter-logo.png" alt="twitter icon" /></a>
</li>
<li>
<a href="#"><img src="images/m-logo.png" alt="m icon" /></a>
</li>
</ul>
</div>
<div class="anchor-arrow">
<img src="images/anchor-arrow.png" alt="arrow" />
</div>
</section>
<section class="project-container">
<div class="project-title">
<h2>My Recent </h2>
</div>
<div class="project-list">
<ul>
<li class="list-item">
<div class="image-project"></div>
<div class="image-style">
<h2>Tonic</h2>
<div class="project-buttons">
<div>Ruby on Rails</div>
<div>Ruby</div>
<div>Html</div>
<div>CSS</div>
</div>
<div class="button-style-link">
<button class="button" type="button">See Project</button>
</div>
</div>
</li>
<li class="list-item">
<div class="image-project"></div>
<div class="image-style">
<h2>Multi-Post Stories Gain+Glory</h2>
<div class="project-buttons">
<div>Ruby on Rails</div>
<div>Ruby</div>
<div>Html</div>
<div>CSS</div>
</div>
<div class="button-style-link">
<button class="button" type="button">See Project</button>
</div>
</div>
</li>
<li class="list-item">
<div class="image-project"></div>
<div class="image-style">
<h2>Multi-Post Stories Gain+Glory</h2>
<div class="project-buttons">
<div>Ruby on Rails</div>
<div>Ruby</div>
<div>Html</div>
<div>CSS</div>
</div>
<div class="button-style-link">
<button class="button" type="button">See Project</button>
</div>
</div>
</li>
</ul>
</div>
</section>
<div class="about-me">
<section class="about-container">
<div class="about-header">
<h2>About me</h2>
</div>
<div class="about-style">
<p>
I can help you build a product , feature or website Look through
some of my work and experience! If you like what you see and have
a project you need coded, don’t hestiate to contact me.
</p>
</div>
<div class="get-resume-button">
<button type="button">Get My Resume</button>
</div>
<div class="skills-container">
<ul>
<li class="item-list">
<div class="icon">
<img src="images/language-icons.png" alt="icon languages" />
</div>
<div>
<h2>Languages</h2>
</div>
<div class="about-buttons">
<div>Ruby on Rails</div>
<div>Ruby</div>
<div>Html</div>
<div>CSS</div>
</div>
</li>
<li class="item-list">
<div class="icon">
<img src="images/frameworks.png" alt="icon frameworks" />
</div>
<div>
<h2>Frameworks</h2>
</div>
<div class="about-buttons">
<div>Bootstrap</div>
<div>Ruby on rails</div>
<div>RSpec</div>
<div>Capybara</div>
<div>Selenium</div>
</div>
</li>
<li class="item-list">
<div class="icon">
<img src="images/skills.png" alt="icon skills" />
</div>
<div>
<h2>Skills</h2>
</div>
<div class="about-buttons">
<div>Codekit</div>
<div>Github</div>
<div>Codepen</div>
<div>Gitlab</div>
<div>Terminal</div>
</div>
</li>
</ul>
</div>
</section>
</div>
</div>
</body>
</html>