-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (55 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
#myDIV {
-webkit-animation: mymove 5s infinite; /* Chrome, Safari, Opera */
animation: mymove 5s infinite;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes mymove {
from {background-color: #00AEFF;}
to {background-color: #FBFF00;}
}
/* Standard syntax */
@keyframes mymove {
from {background-color: #00AEFF;}
to {background-color: #FBFF00;}
}
</style>
<title>My Awesome Resume</title>
</head>
<body>
<div id="myDIV">
<div class="w3-container">
<h1>Omaste Witkowski</h1>
<p>I started writing code in 1996 and fell in love with the magic of it all!</p>
<p>From those humble beginnings, I gradually moved into other areas and into the career path I am currently on.</p>
</div>
</div>
<div class="w3-row-padding">
<div class="w3-third">
<h2>Wordpress</h2>
<p>A great way to get a website up and running quickly.</p>
<p>Start with wordpress.com and go from there. </p>
</div>
<div class="w3-third">
<h2>Content Marketing</h2>
<p>What you do if you want to be found online.</p>
<p>Blogs, Social Media and other online activities.</p>
</div>
<div class="w3-third">
<h2>Project Management</h2>
<p>Getting organized and staying on task.</p>
<p>Trello, Basecamp and many other tools.</p>
</div>
</div>
<div class="w3-row-padding">
div class="w3-second"
</div>
</body>
</html>