-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
159 lines (136 loc) · 3.01 KB
/
index.php
File metadata and controls
159 lines (136 loc) · 3.01 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
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
<?php
require_once 'app/helpers.php';
session_start();
$page_title = 'home page';
?>
<?php include 'tpn/header.php'?>
<br>
<main>
<div class="container">
<div class="row ">
<div class="mx-auto col-6">
<div id="carouselExampleSlidesOnly" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active inline">
<img src="pic/1.jpg" class="d-block w-200" alt="...">
</div>
<div class="carousel-item">
<img src="pic/2.jpg" class="d-block w-200" alt="...">
</div>
<div class="carousel-item">
<img src="pic/3.jpg" class="d-block w-200" alt="...">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row inline-set">
<div class="col-sm text-center">
<h1 class="display-4 text-center">share your diet with pepole</h1>
<p class="text-center">Lorem ipsum dolor sit amet consectetur adipisicing elit. Saepe, rerum?</p>
<p class="text-center"><a class="btn btn-outline-success btn-lh mt-3" href="signup.php">sign up</a></p>
</div>
<br>
<br>
<br>
<br>
<br>
<table class="table">
<tbody cellspacing="50">
<tr style=background-color:#8AFF33>
<table>
<th scope="col">
<button type="button" class="btn btn-success" data-toggle="button" aria-pressed="false" autocomplete="off">
cooking
</button>
</th>
<tr>
<td>Stews</td>
</tr>
<tr>
<td>Desserts</td>
</tr>
<tr>
<td>special meals</td>
</tr>
<tr>
<td></td>
</tr>
</table>
<br>
<br>
<br>
</tr>
<!-- seuym -->
<tr>
<table>
<th scope="col">
<button type="button" class="btn btn-success" data-toggle="button" aria-pressed="false" autocomplete="off">
Diet
</button>
</th>
<td></td>
</tr>
<tr>
<td>Guids for begginers</td>
</tr>
<tr>
<td>storys and opinion</td>
</tr>
<td>Advices</td>
</table>
</tr>
<!-- seuym -->
<tr>
<table>
<th scope="col">
<button type="button" class="btn btn-success" data-toggle="button" aria-pressed="false" autocomplete="off">
Sport
</button>
</th>
<tr>
<td>GYM</td>
</tr>
<tr>
<td>Street workout</td>
</tr>
<tr>
<td>Martial arts</td>
</tr>
<tr>
<td>crossfit</td>
</tr>
</table>
</tr>
<!-- seyum -->
<tr>
<table>
<th scope="col">
<button type="button" class="btn btn-success" data-toggle="button" aria-pressed="false" autocomplete="off">
Life Style
</button>
</th>
<tr>
<td>Books</td>
</tr>
<tr>
<td>Magazins</td>
</tr>
<tr>
<td>spirituality</td>
</tr>
</table>
</tbody>
</table>
</div>
</div>
</main>
<br>
<br>
<br>
<br>
<?php include 'tpn/footer.php'?>