-
Notifications
You must be signed in to change notification settings - Fork 0
/
homefake.html
executable file
·93 lines (85 loc) · 3.71 KB
/
homefake.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
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<title>DefineYourWorld</title>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!-- Icons: Add this line of code for the icons that you find in materialize to work -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Stylesheets: All of your stylesheets are in this section -->
<link rel="stylesheet" href="./stylesheets/home.css">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.99.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<!--marks the end of your stylesheets section-->
<!--Scripts: All of your jQuery is in this section -->
<!--This is the jQuery CDN. To find, Google "jQuery CDN and select the website entitle 'code.jquery' " -->
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<!-- The JavaScript that you need from materialize. Can be found on the "Get Started" page on materialize -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.99.0/js/materialize.min.js"></script>
<!-- firebase script -->
<script src="https://www.gstatic.com/firebasejs/4.1.3/firebase.js"></script>
<!--The link to the file that you'll code your jQuery on. This is just like your "style.css" file but for jQuery-->
<script src="./js/main.js"></script>
<!--marks the end of your JavaScript section-->
</head>
<body>
<!-- dropDown Structure -->
<div class="row">
<ul id="dropdown1" class="dropdown-content">
<li><a href="profile.html">Profile</a></li>
<li><a href="feed.html">Feed</a></li>
<!-- <li class="divider"></li>
<li><a href="login.html">Login</a></li>
<li><a href="bio.html">about</a></li> -->
</ul>
<div class="nav-wrapper">
<ul class="left hide-on-med-and-down">
<!-- dropDown Trigger -->
<li><a class="dropdown-button" href="#!" data-activates="dropdown1"><i class="material-icons left">view_headline</i></a></li>
</ul>
</div>
</div>
<!-- Title of Company -->
<div class="row">
<div class="caption center-align" class="col s6 offset-s3">
<h1>Define YOUR World</h1>
</div>
</div>
<!-- Automated Carousel -->
<div class="slider">
<!-- SpinningEarth Gif & text -->
<!-- <div class="caption center-align" class="col s6 offset-s3">
<h1 id="tag" class="col s6">Define YOUR World</h1>
</div> -->
<img id="world" class="col s6 responsive-img" src="./images/spinnerearth.gif">
<!-- <div class="caption center-align">
<h3 id="tag2" class="col s6">Defining Your World One Step at a Time</h3>
</div> -->
<!-- End of Gif & text -->
<ul class="slides">
<li>
<img src="http://www.thisiscolossal.com/wp-content/uploads/2014/02/seeingNY05.gif"> <!-- random image -->
</li>
<li>
<img src="https://s-media-cache-ak0.pinimg.com/originals/a3/1c/d1/a31cd1ae4b06f35972abddaf6ec1e6b4.gif"> <!-- random image -->
</li>
<li>
<img src="https://s-media-cache-ak0.pinimg.com/originals/0a/c9/fa/0ac9fa309dc6a205c900ebd84b7373ec.gif"> <!-- random image -->
</li>
<li>
<img src="http://25.media.tumblr.com/766f08fb4219bb3de9e5978b8a74f1f7/tumblr_muaa98aEN41shrbvmo1_500.gif"> <!-- random image -->
</li>
</ul>
</div>
<!-- Misson Statement -->
<div class="row">
<div class="caption center-align" class="col s6 offset-s3">
<h3>Defining Your World one step at a time</h3>
</div>
</div>
</body>
</html>