-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
77 lines (58 loc) · 3.56 KB
/
about.html
File metadata and controls
77 lines (58 loc) · 3.56 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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta chareset="UTF-8">
<title>About Me </title>
<link rel="stylesheet" type="text/css" href="static/css/header.css">
<link rel="stylesheet" type="text/css" href="static/css/main.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<div class = navBar>
<a href = "index.html" class = "navLink left ">HOME</a>
<a href = "projects.html" class = "navLink left ">PROJECTS</a>
<a href = "index.html" class = "logo"><img class = logoImage src="static/images/benj.png"></a>
<a href = "about.html" class = "navLink right ">ABOUT</a>
<a href = "contact.html" class = "navLink right ">CONTACT</a>
</div>
<div class = "aboutBody">
<h1 class = "aboutTitle">About Me</h1>
<img class = "aboutImage left" src="static/images/two.jpg">
<p class = "aboutText">My first introduction to programming, was an online course using Python, that I took shortly after graduating High School. It didn't take long for me to realize that I loved programming. After learning the fundamentals of programming, with python. I began learning web development. Specifically, front end.
To see some of my work, check out my <a href="projects.html">Projects Page</a>, or my <a href="https://github.com/benwalley">Github</a>.
</p>
<ul class = "externalLinks"><p class = "bold">LINKS</p>
<li class = "displayLink"><a href="https://github.com/benwalley">Github</a></li>
<li class = "displayLink"><a href="">My Resume</a></li>
</ul>
</div>
<div class = "acting">
<div class = "aboutTitle actingTitle">ACTING</div>
<div class = "aboutText second">I love to act, and have made a few videos myself, as well as helped and acted in some other peoples videos</div>
<iframe class = "video" src="https://www.youtube.com/embed/YgwI6_W0-gQ" frameborder="0" allowfullscreen></iframe>
<iframe class = "video" src="https://www.youtube.com/embed/0aUqaeQ5FIU" frameborder="0" allowfullscreen></iframe>
<iframe class = "video" src="https://www.youtube.com/embed/gNk0VmZ5TTw" frameborder="0" allowfullscreen></iframe>
<iframe class = "video" src="https://www.youtube.com/embed/KLJ3ya_QUKA" frameborder="0" allowfullscreen></iframe>
<iframe class = "video" src="https://www.youtube.com/embed/dDZDYnF6SRE" frameborder="0" allowfullscreen></iframe>
<iframe class = "video" src="https://www.youtube.com/embed/w4O-tGGhRzA?list=PLN1er16yZEeqjxkGa1gvdAIKMz-o74lY-" frameborder="0" allowfullscreen></iframe>
<iframe class = "video" src="https://www.youtube.com/embed/gGHOhEvY5FA" frameborder="0" allowfullscreen></iframe>
<iframe class = "video" src="https://www.youtube.com/embed/bEmUZVW04mY" frameborder="0" allowfullscreen></iframe>
</div>
<div class = "origami">
<div class = "aboutTitle">ORIGAMI</div>
<div class = "aboutText second">I have been doing origami for about 10 years, and have designed many of my own models, as well as published diagrams for one. I also greatly enjoy teaching origami, which I have done on several occasions.</div>
<div class = "origamiSection">
<img class = "origamiImage" src="static/images/german.jpg" width = "700">
<p class = "origamiDescription">A german shepherd I designed</p>
</div>
<div class = "origamiSection">
<img class = "origamiImage" src="static/images/last_waltz.jpg" width = "700">
<p class = "origamiDescription">The Last Waltz. Designed by Neal Elias. Folded by Me</p>
</div>
<div class = "origamiSection">
<img class = "origamiImage origamiTall" src="static/images/mockingjay.jpg" width = "700">
<p class = "origamiDescription">A mockingjay I designed</p>
</div>
</div>
</body>
</html>