-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebsite.php
More file actions
68 lines (59 loc) · 1.63 KB
/
website.php
File metadata and controls
68 lines (59 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ved's Website</title>
<style>
body{
display: flex;
flex-direction: center;
justify-content: center;
align-items: center;
margin-top: 60px;
background-color: lightseagreen;
}
.nav-item{
margin-top: 30px;
font-size: 30px;
list-style-type: none;
border: 1px solid black;
background-color: lightslategray;
}
.nav-bar{
border: 3px solid peru;
width: 210px;
padding: 25px;
margin-top: 30px;
background-color: yellowgreen;
}
h1{
font-size: 35px;
}
a{
text-decoration:none;
}
.clink{
list-style-type: none;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="nav-bar">
<h1 >WELCOME</h1>
<li class="nav-item">
<a class="nav-link" href="/sqlformpp/insert.php">Signup</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/sqlformpp/insert.php">Login</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/sqlformpp/delete.php">Logout</a>
</li>
</ul>
</div>
</nav>
</body>
</html>