-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
36 lines (35 loc) · 1.49 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
<?php include 'process.php';?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shout it!</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<meta name="description" content="text first thing comes to mind">
</head>
<body>
<div id="container">
<header>
<h1>SHOUT IT! shoutbox</h1>
</header>
<div id="shouts">
<ul>
<li class="shout"><span>10:15 PM - </span> hala: ya rab help me finish my projects</li>
<li class="shout"><span>10:15 PM - </span> Ahmed: ya rab help me finish my projects</li>
<li class="shout"><span>10:15 PM - </span> Ahmed: ya rab help me finish my projects</li>
<li class="shout"><span>10:15 PM - </span> Ahmed: ya rab help me finish my projects</li>
<li class="shout"><span>10:15 PM - </span> Ahmed: ya rab help me finish my projects</li>
<li class="shout"><span>10:15 PM - </span> Ahmed: ya rab help me finish my projects</li>
</ul>
</div>
<div id ="input">
<form method="post" action="process.php">
<input type="text" name="user" placeholder="Enter your name" />
<input type="text" name="message" placeholder="Enter a message"/>
<br />
<input class ="shout-btn"type="submit" name="Submit" value="Shout-it out"/>
</form>
</div>
</body>
</html>