-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
277 lines (231 loc) · 5.6 KB
/
index.html
File metadata and controls
277 lines (231 loc) · 5.6 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ronald Guidry</title>
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Merriweather|Montserrat|Sacramento" rel="stylesheet">
<link rel="icon" href="favicon.ico">
<style>
body {
color: #40514E;
margin: 0;
text-align: center;
font-family: 'Merriweather', serif;
}
h1 {
color: #66BFBF;
font-size: 5.625rem;
margin: 50px auto 0 auto;
font-family: 'Sacramento', cursive;
}
h2 {
color: #66BFBF;
font-family: 'Lato', sans-serif;
font-size: 2.5rem;
font-weight: normal;
padding-bottom: 10px;
}
h3 {
font-family: 'Lato', sans-serif;
color: #11999E;
}
p {
line-height: 2;
}
hr {
border: dotted #EAF6F6 6px;
border-bottom: none;
width: 4%;
margin: 100px auto;
}
a {
color: #11999E;
font-family: 'Lato', sans-serif;
margin: 10px 20px;
text-decoration: none;
}
a:hover {
color: #EAF6F6
}
.navbar {
display: flex;
background-color: powderblue;
padding: 0;
margin: 0
}
.navbar a {
color: black;
padding: 14px 20px;
text-decoration: none;
text-align: center;
}
.navbar a:hover {
color: white;
}
.top-container {
background-color: #E4F9F5;
position: relative;
padding-top: 100px;
}
.middle-container {
margin: 100px 0;
}
.bottom-container {
background-color: #66bfbf;
padding: 50px 0 20px;
}
.skill-row {
width: 50%;
margin: 100px auto 100px auto;
text-align: left;
}
.pro {
text-decoration: underline;
}
.bio {
width: 30%;
margin: auto;
}
.contact-message {
width: 40%;
margin: 40px auto 60px;
}
.copyright {
color: #EAF6F6;
font-size: 0.75rem;
padding: 20px 0;
}
.top-cloud {
position: absolute;
right: 300px;
top: 40px;
}
.bottom-cloud {
position: absolute;
left: 250px;
bottom: 300px;
}
.arthur {
width: 200px;
height: 200px;
border-radius: 100%;
}
.dog {
width: 150px;
height: 150px;
float: left;
margin-right: 30px;
}
.web {
width: 150px;
height: 150px;
float: right;
margin-left: 30px;
margin-top: 50px;
}
.guitar {
width: 150px;
height: 150px;
float: left;
margin-right: 30px;
}
.sales {
width: 150px;
height: 150px;
text-align: justify;
float: right;
margin-left: 30px;
margin-top: 50px;
}
.creator {
color: #EAF6F6;
}
.contact-me {
font-size: 20px;
}
.btn {
background-color: #11ccdd;
border-radius: 28px;
border: 1px solid #11ccdd;
display: inline-block;
cursor: pointer;
color: #ffffff;
font-family: 'Lato', sans-serif;
font-size: 15px;
padding: 16px 31px;
text-decoration: none;
text-shadow: 0 1px 0 #11ccdd;
}
.btn:hover {
background-color: #30e3cb;
}
.btn:active {
position: relative;
top: 1px;
}
</style>
</head>
<body>
<div class="header">
<div class="navbar">
<a href="#top">Home</a>
<a href="#Skills">Skills</a>
<a href="#contactme">Contact Me</a>
</div>
<div class="top-container">
<img class="top-cloud" src="images/cloud.png" alt="cloudimage">
<h1>I'm Ronald.</h1>
<h2>A <span class="pro">pro</span>grammer.</h2>
<img class="bottom-cloud" src="images/cloud.png" alt="cloud-img">
<img src="images/mountain.png" alt="Mountain-img">
</div>
<div class="middle-container">
<div class="profile">
<img class="arthur" src="https://image.flaticon.com/icons/svg/1864/1864593.svg" alt="User">
<h3>Ronald Guidry</h3>
<p class="bio">Born in Mexico city i am currently 27 years old. This is my first website i developed with HTML and CSS.</p>
</div>
<hr>
<div class="skills">
<h2 id="Skills">My Skills</h2>
<div class="skill-row">
<img class="dog" src="https://image.flaticon.com/icons/svg/185/185463.svg" alt="Dog trainer">
<h3>Dog trainer experience</h3>
<p>I was a dog handler in the army specifically working with searching dogs Belgian Malinois. I have 3 years of experience and currently i have a project working with two little malinois puppies. </p>
</div>
<div class="skill-row">
<img class="web" src="https://image.flaticon.com/icons/svg/1197/1197409.svg" alt="Webdeveloper">
<h3>Web Developer</h3>
<p>I am a web developer/web designer. 5 years experience.</p>
</div>
<div class="skill-row">
<img class="guitar" src="https://image.flaticon.com/icons/svg/1913/1913288.svg" alt="Guitar">
<h3>Guitar</h3>
<p>The first time i played the guitar i was 11 years old. </p>
</div>
<div class="skill-row">
<img class="sales" src="https://image.flaticon.com/icons/svg/2025/2025165.svg" alt="salesrep">
<h3>Sales Representative</h3>
<p>I have three years of experience as sales representative and customer support. Worked in a company called AIG. AIG is a advertisment company.</p>
</div>
</div>
<hr>
<div class="contact-me">
<h3 id="contactme">Get In Touch</h3>
<h3>Ronald Guidry</h3>
<p class="contact-message">“Choose the positive. You have choice, you are master of your attitude, choose the positive, the constructive. Optimism is a faith that leads to success.” Bruce Lee</p>
<a class="btn" href="mailto:ronaldguidry@hotmail.com">CONTACT ME</a>
</div>
</div>
<footer class="foot">
<div class="bottom-container">
<a class="footer-link" target="_blank" href="https://ronysweb.github.io/firstwebsite/">My first website</a>
<a class="footer-link" href="https://facebook.com/">Facebook</a>
<a class="footer-link" href="https://www.udemy.com/">Tutorial</a>
<a href="#top">Home</a>
<p class="copyright">© 2020 Ronald Guidry.</p>
</div>
</footer>
</body>
</html>