-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
56 lines (45 loc) · 2.88 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, intital-scale=1.0, user-scalable=yes">
<meta charset="utf-8"> <!--setting the character set as universal utf-8 format-->
<link rel="shortcut icon" href="favicon.ico"> <!--importing the title icon -->
<link rel="stylesheet" href="styles.css"> <!--connecting the css file-->
<!--title to be displayed as tab name-->
<title>RGG-RUSSIAN GREEN GROCERS | BUY GREEN GROCERY </title>
</head>
<body>
<div id = 'welcomeNote'>
WELCOME TO THE RUSSIAN GREEN GROCERS<sup>Ⓒ</sup>
</div>
<div id = 'storeDescription'>
<strong>
<marquee scrollamount=10>
A store with neutralized prices among all branches in the entire country.
</marquee>
</strong>
</div>
<hr> </hr>
</br>
<div class="mainContent">
<div id = 'textUser'>
We heartly welcome to you to our store, <span class=red>RGG</span> ; <span class=red>R</span>ussian <span class=red>G</span>reen <span class=red>G</span>rocers. Everything we stock in our store, is freshly brought in from our own organic farms spreaded in the entire country.<br> If you are new here, click on NEW. Else, click on OLD to continue.
</div>
<div class = 'basicbuttons'>
<a href="signup.php" class=buttonLink>
<div class='buttons' id='newUser'>
<span>NEW</span>
</div>
</a>
<a href="login.php" class='buttonLink'>
<div class ='buttons' id='oldUser'>
<span>OLD</span>
</div>
</a>
</div>
<div id=footText>
<span id=copyright>©</span>2019 SANTOSH PANDEY | ALL RIGHTS RESERVED | RGG™
</div>
</div>
</body>
</html>