-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (69 loc) · 2.49 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
<!DOCTYPE html>
<html>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="main.css">
<title>Jyckle's Portfolio</title>
</head>
<body>
<nav id="navbar">
<ul>
<a href="#welcome-section"><li class="menuItem">Home</li></a>
<a href="#about"><li class="menuItem">About</li></a>
<a href="#projects"><li class="menuItem">Projects</li></a>
<a href="#contact"><li class="menuItem">Contact</li></a>
</ul>
</nav>
<!-- Beginning of Welcome Section-->
<div id="welcome-section">
<h1 id="mainWelcome">Creative. Organized. Dynamic. Engaging.</h1>
<p id="subWelcome"> Welcome to my CODE</p>
</div>
<!-- Beginning of About Section-->
<div id="about" class="majorSection">
<div><h1>About Me</h1></div>
<div id="aboutTileContainer">
<div class="about-tile">
<h2> Education </h2>
</div>
<div class="about-tile">
<h2> Interests </h2>
</div>
<div class="about-tile">
<h2> Experience </h2>
</div>
</div>
</div>
<!-- Beginning of Projects-->
<div id="projects" class="majorSection">
<div><h1>Projects</h1></div>
<a href="https://codepen.io/jyckle/pen/VddaZR">
<div class="project-tile">
<h2> Project Documentation Template </h2>
</div>
</a>
<a href="https://codepen.io/jyckle/pen/ZRrJOv">
<div class="project-tile">
<h2>CDN Interest Form</h2>
</div>
</a>
</div>
<!-- Beginning of Contact-->
<div id="contact" class="majorSection">
<div><h1>Contact</h1></div>
<a href="https://github.com/jyckle"><div id="profile-link" class="contactTile"> Check me out on GitHub </div></a>
</div>
<video width="640" height="360" controls autoplay>
<source src="testPrint.mp4" type="video/mp4" />
<object width="640" height="360" type="application/x-shockwave-flash" data="__FLASH__.SWF">
<param name="movie" value="__FLASH__.SWF" />
<param name="flashvars" value="autostart=true&controlbar=over&image=__POSTER__.JPG&file=testPrint.mp4" />
</object>
</video>
<p> <strong>Download Video:</strong>
Closed Format: <a href="testPrint.mp4">"MP4"</a>
</p>
</body>
</html>