-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
64 lines (60 loc) · 2.68 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
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
<!-- Mobile Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Fonts -->
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,700' rel='stylesheet' type='text/css'>
<!-- Stylesheets -->
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/animations.css">
<!-- Jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
</head>
<body>
<div class="flex flex-horizontal-center flex-direction-col container">
<header>
<nav class="flex flex-spread">
<div>
<span>Bernet Clemons</span>
</div>
<div>
<a href="#work" target="_blank">work</a>
<a href="" <a href="mailto:[email protected]" target="_blank">contact</a>
</div>
</nav>
</header>
<div class="flex hero-container">
<h1> Hey. I am an up and coming maker, pepsi zero lover, and believer of all things. </h1>
</div>
<div id="work" class="images-container">
<!-- Work Item 1 -->
<img src="images/phones-item-1.png">
<h2 class="see-through appear">Company & Co App</h2>
<p class="see-through appear">
This is an app I made for <a href="http://www.cameronsworld.net/" target="_blank">Company & Co</a>, I used this technology and that strategy. This project was developed in one day (big shout out to khaled and his keys to success). I like cookies and milk, I hope you do to!
</p>
<!-- Work Item 2 -->
<img src="images/portfolio-item-2.png">
<h2>The Dawn of Dusk: Folio Edition IX</h2>
<p>
I developed this very website you are looking at right now in front of you. <a href="http://www.cameronsworld.net/" target="_blank">My inspiration</a> is what really came through in the design. This project was developed in one day (big shout out to khaled and his keys to success). Check out my <a href="http://www.cameronsworld.net/" target="_blank">blog post</a> for more about pizza and orange pekoe tea.
</p>
</div>
</div>
<script type="text/javascript">
$('a').click(function(){
$('html, body').animate({
scrollTop: $( $(this).attr('href') ).offset().top
}, 1000);
return false;
});
$(window).scroll(function() {
if ($(this).scrollTop() > 200) {
$( ".appear" ).addClass( "opacity" );
}
});
</script>
</body>
</html>