-
Notifications
You must be signed in to change notification settings - Fork 11
/
makingwebsite.html
109 lines (95 loc) · 2.05 KB
/
makingwebsite.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>making website
</title>
</head>
<style>
body{color:white;
margin:0px;
padding: 0px;
background-image: url(baba.jpg.jpg);
}
.left{
color:pink;
display:inline-block;
border:left:30px;top:0px;
position:absolute;
}
.mid{
color:white;
display:block;
width:30%;
margin: 30px auto;
}
.right{
color:blue;
display:inline-block;
right:30px;top:0px;
position:absolute;
}
.nav{
display:inline inline-block;background-color: black;
border:1px solid blue;
border-radius: 4px;
}
.nav li {
display:inline-block;
background-color: black;
color:white;
padding:3px;
padding left:12px;
margin :13px;
}
.nav li a{color:white;
text-decoration: none;
border:blue;
border-radius:4px;
font-size: 15px;
}
.nav li a:hover{
color:blue
}
.aman{
border:4px solid navy;
background-color: black;
display:inline-block;
padding:50px 60px;
position:absolute;
top:170px;
left:500px;
border-radius: 20px;
}
.aman button{
background-color: crimson;
}
</style>
<body>
<header class="header">
<div class="left">
<a href="#">
<img src="leaves.jpg" height="40px" width="40px"></a>
</div>
<div class="mid">
<ul class="nav">
<li><a href="#">alpha</li></a>
<li><a href="#">aman</li></a>
<li><a href="#">arijit</li></a>
<li><a href="#">dhvani</li></a>
<li><a href="#">virat</a></li>
</ul>
</div>
<div class="right">
<button type="submit" name="submit">contact us</button>
</div>
<div class="aman">
your name<br><input type="text" name="name" placeholder="enter your name"><br><br>
address<br><input type="text" name="adress" placeholder="enter your adress"><br><br>
timing<br><input type="text" name="enter timing" placeholder="enter your timing"><br><br>
<button type="submit" name="paymet" >proceed for payment</button>
</div>
</header>
</body>
</html>