-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcreate_your_profile.html
More file actions
102 lines (93 loc) · 3.38 KB
/
create_your_profile.html
File metadata and controls
102 lines (93 loc) · 3.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style>
/* Remove the navbar's default margin-bottom and rounded borders */
.navbar {
margin-bottom: 0;
border-radius: 0;
}
/* Add a gray background color and some padding to the footer */
footer {
background-color: #f2f2f2;
padding: 25px;
}
.carousel-inner img {
width: 100%; /* Set width to 100% */
margin: auto;
min-height:200px;
}
/* Hide the carousel text when the screen is less than 600 pixels wide */
@media (max-width: 600px) {
.carousel-caption {
display: none;
}
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Logo</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="create your profile.html">Create Your Profile</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>
</ul>
</div>
</div>
</nav>
<h1>Hobbies</h1>
<form>
Name<input type="text" placeholder="Enter your name" ><span class="red" id="fname" style="font-size:16px"></span>
<br>
Email Address<input type="email" placeholder="Enter your name" ><span class="red" id="fname" style="font-size:16px"></span>
<br>
Username<input type="text" placeholder="Enter your name" ><span class="red" id="fname" style="font-size:16px"></span>
<br>
Password<input type="password" placeholder="Enter your name" ><span class="red" id="fname" style="font-size:16px"></span>
<br>
Choose Hobbies you like:(feel free to choose more than 1)
<br>
<input type="checkbox" name="Painting" value="yes">Painting
<br>
<input type="checkbox" name="Singing" value="yes">Singing
<br>
<input type="checkbox" name="Dancing" value="yes">Dancing
<br>
<input type="checkbox" name="Reading" value="yes">Reading
<br>
<input type="checkbox" name="Knitting" value="yes">Knitting
<br>
<input type="checkbox" name="photography" value="yes">Photography
<br>
<input type="checkbox" name="yoga" value="yes">Yoga
<br>
<input type="checkbox" name="fishing" value="yes">Fishing
<br>
<input type='submit' name='submit' class='btn btn-success' value='Submit' >
<a href="hobbies_riya.html">
<input type='button' name='back' class='btn btn-danger' value='back'></a>
</form>
<footer class="container-fluid text-center">
<p>Copyright © 2021 </p>
</footer>
</body>
</html>