-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelloanimation.html
62 lines (54 loc) · 1.5 KB
/
helloanimation.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
<!doctype html>
<html>
<meta charset="utf-8">
<link rel="stylesheet" href="helloanimation.css">
<section id="contact">
<h1 id="contact-name">Name</h1>
</section>
<section id="projects">
<header>
<h1>Projects</h1>
</header>
<section id="projects-java">
<header>
<h2>Java</h2>
</header>
<article class="project">
<h4 class="project-name">Java project 1</h4>
(<span class="project-link"></span>)
<span class="project-description">
This is a Java project. Normally Java is used in
an enterprise context, but it does have an origin in
applications programming, and its library shows.
</span>
</article>
</section>
<section id="projects-python">
<header>
<h2>Python</h2>
</header>
<article class="project">
<h4 class="project-name">Python project 1</h4>
(<span class="project-link"></span>)
<span class="project-description">
This is a Python project. This can be anything, really.
</span>
</article>
</section>
<section id="projects-javascript">
<header>
<h2>JavaScript</h2>
</header>
<article class="project">
<h4 class="project-name">JavaScript project 1</h4>
(<span class="project-link"></span>)
<span class="project-description">
This is a JavaScript project.
Likely it involves a HTML page, either by having one in it,
or the project being a server to a client webapp.
</span>
</article>
</section>
</section>
<script src="helloanimation.js"></script>
</html>