-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
118 lines (92 loc) · 2.56 KB
/
profile.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>signup page</title>
<link rel="stylesheet" href="css/foundation.css" />
<script src="js/vendor/modernizr.js"></script>
<style type="text/css">
*{
color: black;
}
h1{
color: black;
}
</style>
</head>
<body>
<nav class="top-bar" data-topbar role="navigation">
<ul class="title-area">
<li class="name">
<h1><a href="index.html">Tutorify</a></h1>
</li>
<!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone -->
<li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>
</ul>
<section class="top-bar-section">
<!-- Right Nav Section -->
<ul class="right">
<li><a href="index.html">Home</a></li>
<li class="has-dropdown">
<a href="#">Right Button Dropdown</a>
<ul class="dropdown">
<li><a href="#">First link in dropdown</a></li>
<li><a href="#">Second link in dropdown</a></li>
</ul>
</li>
<ul class="right">
<li><a href="signup.html">Sign Up</a></li>
<li><a href="#" data-reveal-id="myModal" >Log In</a></li>
</ul>
</ul>
</section>
</nav>
<br/><br/>
<div class="row">
<div style="float: left;text-align:center;" class="large-4 columns">
<div class="row"><img src="http://vignette4.wikia.nocookie.net/uncyclopedia/images/0/0e/Funny_alien.jpg/revision/latest">
</div>
<br/>
<a href="#" class="button">Contact</a>
<p>Reviews</p>
<hr/>
<p>14 years old</p>
<hr/>
<p>9th grade</p>
<hr/>
<p>2 students</p>
</div>
<div style="float: right; padding: 20px; text-align: left;padding-left:50px;" class="large-8 columns">
<div class="row">
<h1>John Doe</h1>
<p>dfkhskjhnkjhknskjhkahkskfhj<br/>fshujaijhdjlks;dfskfdssd</p>
<p>Days Available: Monday, Tuesday, Thursday</p>
<p>Price: $25 per hour</p>
</div>
</div>
<br><br>
</div>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
<script type="text/javascript">
</script>
<footer class="footer">
<div class="row">
<div class="small-12 columns">
<p class="slogan">Learning and Earning at the Tap of a Button</p>
<p class="links">
<a href="#">Home</a>
<a href="#features">Features</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</p>
<p class="copywrite">Copywrite © 2015 Tutorify</p>
</div>
</div>
</footer>
</body>
</html>