-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (70 loc) · 4.89 KB
/
index.html
File metadata and controls
79 lines (70 loc) · 4.89 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
<!DOCTYPE html>
<html>
<head>
<title>Ryan Au's Webpage</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="./default-stylesheet.css">
<link rel="stylesheet" type="text/css" href="./home-stylesheet.css">
</head>
<body>
<div id="container">
<header>
<div id="title-box">
<a id="title" href="http://ryanau.github.io/index.html">Ryan Au's Website</a>
</div>
<nav>
<a class="menu-button" href="#">About Me</a>
<a class="menu-button" href="#">Blog</a>
<a class="menu-button" href="#">Culture</a>
<a class="menu-button" href="#">Photography</a>
<a class="menu-button" href="http://ryanau.github.io/project/golf.html">Projects</a>
<a class="menu-button" href="#">Contact Me</a>
</nav>
</header>
<div id="bodycontent">
<div id="aboutmebox">
<article>
<h3>A Brief Intro</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</article>
</div>
<div id="blogbox">
<article>
<h3>Blog</h3>
<a class="blog-menu" href="http://ryanau.github.io/blog/c1-chefs-kitchen.html">Week 1: Cultural | Chef's Kitchen</a>
<a class="blog-menu" href="http://ryanau.github.io/blog/t1-git-blog.html">Week 1: Technical | Git Version</a>
<a class="blog-menu" href="http://ryanau.github.io/blog/t2-css-design.html">Week 2: Technical | CSS Positioning</a>
<a class="blog-menu" href="http://ryanau.github.io/blog/c3_thinking-style.html">Week 3: Cultural | Thinking Style</a>
<a class="blog-menu" href="http://ryanau.github.io/blog/t3-arrays-hashes.html">Week 3: Technical | Arrays and Hashes</a>
<a class="blog-menu" href="http://ryanau.github.io/blog/c4-tech-issues.html">Week 4: Cultural | Tech Issues</a>
<a class="blog-menu" href="http://ryanau.github.io/blog/t4-enumerable-methods.html">Week 4: Technical | Enumerable Methods</a>
<a class="blog-menu" href="http://ryanau.github.io/blog/c5-feedback.html">Week 5: Cultural | Feedback</a>
<a class="blog-menu" href="http://ryanau.github.io/blog/t5-ruby-classes.html">Week 5: Technical | Ruby Class</a>
<a class="blog-menu" href="http://ryanau.github.io/blog/c6-stereotype-threat.html">Week 6: Cultural | Stereotype Threat</a>
<a class="blog-menu" href="http://ryanau.github.io/blog/t6-oop-concepts.html">Week 6: Technical | Object Oriented Vs. Functional Programming</a>
<a class="blog-menu" href="http://ryanau.github.io/blog/c7-values.html">Week 7: Cultural | Affirmation and Stereotype Threat</a>
<a class="blog-menu" href="http://ryanau.github.io/blog/t7-JavaScript.html">Week 7: Technical | JavaScript</a>
<a class="blog-menu" href="http://ryanau.github.io/blog/c8-conflict.html">Week 8: Cultural | Conflicts</a>
<a class="blog-menu" href="http://ryanau.github.io/blog/t8-tech.html">Week 8: Technical | Tech</a>
</article>
</div>
<div id="culturebox">
<article>
<h3>Culture</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</article>
</div>
<div id="photographybox">
<article>
<h3>Photography</h3>
<img src="imgs/DSC_2102.jpg" alt="Death Valley" width=100%>
</article>
</div>
<footer>
<a class="footer-button" href="http://www.linkedin.com/in/ryanau852">LinkedIn</a>
<a class="footer-button" href="http://github.com/ryanau">GitHub</a>
<a class="footer-button" href="http://twitter.com/ryan_au">Twitter</a>
</footer>
</div>
</body>
</html>