-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
166 lines (143 loc) · 6.58 KB
/
index.php
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<?php
// echo "<head>
// <meta charset=\"UTF-8\">
// <title> Profile</title>
// </head>";
echo "<script src=\"javascript/my_script.js\"></script>";
echo "<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js\"></script>";
echo "<script type=\"text/javascript\" src=\"javascript/smoothscroll.js\"></script>";
echo "<script type=\"text/javascript\" src=\"javascript/smoothscroll.js\"></script>";
echo " <link rel=\"stylesheet\" href=\"css/cssstyle.css\" >";
?>
<link href='fullCalendar/fullcalendar.min.css' rel='stylesheet' />
<link href='fullCalendar/fullcalendar.print.min.css' rel='stylesheet' media='print' />
<script src='fullCalendar/lib/moment.min.js'></script>
<script src='fullCalendar/lib/jquery.min.js'></script>
<script src='fullCalendar/fullcalendar.min.js'></script>
<script>
$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay,listWeek'
},
defaultDate: '<?php echo date("Y-m-d"); ?>',
navLinks: true, // can click day/week names to navigate views
editable: true,
eventLimit: true, // allow "more" link when too many events
events: [
{
title: 'All Day Event',
start: '2017-2-11'
},
{
title: 'Long Event',
start: '2017-2-11',
end: '2017-2-19'
},
]
});
});
</script>
<div class='container' onresize="floatFunction()">
<div id='top' >
<a href="#top2" class="smoothScroll"><div class="halfDiv adjust">Your Name</div></a>
<div class="halfDiv adjust">
<a href="#acts" class="smoothScroll"><div class="thirdDiv adjust">Activities</div></a>
<a href="#projects" class="smoothScroll"><div class="thirdDiv adjust">Projects</div></a>
<a href="images/resume.pdf" class="smoothScroll"><div class="thirdDiv adjust">Resume</div></a>
</div>
</div>
<a name='top2' class="floaty">
<br>
</a>
<div class='middle' class="floaty">
<br>
<br>
<img id="toMakeFly" src="images/fake.png">
<br>
<div id='summary'>
<br>
DERP DERP
</div>
<br>
</div>
<div class='acts' class="floaty">
<a name="acts" >
<br>
<br>
</a>
<h1>Things I do</h1>
<br>
<br>
<div id="activitiesdiv">
<div class="thirdDiv columnDiv">
<div><p>Activity 1</div>
<div><img src="images/fake.png" class='img'></div>
<div><p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quas</p></div>
</div>
<div class="thirdDiv columnDiv">
<div><p>Activity 2</div>
<div><img src="images/fake.png" class='img'></div>
<div><p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quas</p></div>
</div>
<div class="thirdDiv columnDiv">
<div><p>Activity 3</div>
<div><img src="images/fake.png" class='img'></div>
<div><p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quas</p></div>
</div>
</div>
<br>
</div>
<div class='projects' class="floaty">
<a name="projects"><br><br></a>
<h1>Projects</h1>
<br>
<div id="projectdiv">
<div class="halfDiv columnDiv">
<div><p>Project 1</div>
<div><img src="images/fake.png" class='img'></div>
<div><p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quas</p></div>
</div>
<div class="halfDiv columnDiv">
<div><p>Project 2</div>
<div><img src="images/fake.png" class='img'></div>
<div><p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quas</p></div>
</div>
</div>
<br>
</div>
<div class='middle' class="floaty">
<div id='form' style="margin-left:20%; margin-right:20%;">
<br>
<b>Contact Me</b>
<br>
<form method="post" action="email.php" name="myemailform" enctype="multipart/form-data">
<div class="form-group">
<label for="email">Email Address or Other Contact Info:</label>
<input type="text" class="form-control" id="email" placeholder="Email" name="email">
</div>
<div class="form-group">
<label for="org">Name or Organization:</label>
<input type="text" class="form-control" id="org" placeholder="Name/Organization" name="name">
</div>
<div class="form-group">
<label for="msg">Message:</label>
<textarea class="form-control" rows="3" type="text" id="msg" placeholder="Message" name="message"></textarea>
</div>
<div class="form-group">
<button type="submit" id='form-submit'>Send to my Email</button>
</div>
</form>
</div>
<div style="clear:both; width:80%; margin: 0 auto;" id='calendar'></div>
</div>
<div id="footer">
<br>
<br>
Copyright © <?php echo date("Y"); ?> Leelabari Fulbel
</div>
</div>
</html>
<?php ?>