-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome.html
More file actions
103 lines (94 loc) · 2.48 KB
/
Home.html
File metadata and controls
103 lines (94 loc) · 2.48 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
103
<!DOCTYPE html>
<html>
<head>
<title>Home Page</title>
<meta charset="UTF-8">
<meta name="description" content="HTML Tutorials">
<meta name="keywords" content="HTML,CSS">
<meta name="author" content="Rama">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--<meta http-equiv="refresh" content="5">-->
<noscript>Java Script is not supported</noscript>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<style>
.text-on-pannel {
background: #fff none repeat scroll 0 0;
height: auto;
margin-left: 20px;
padding: 3px 5px;
position: absolute;
margin-top: -47px;
border: 1px solid #337ab7;
border-radius: 8px;
}
.panel {
/* for text on pannel */
margin-top: 27px !important;
}
.panel-body {
padding-top: 30px !important;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #e3e3e3;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.well-legend {
display: block;
font-size: 14px;
width: auto;
padding: 2px 7px 2px 5px;
margin-bottom: 20px;
line-height: inherit;
color: #333;
background: #fff;
border: 1px solid #e3e3e3;
border-radius: 4px;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
</style>
</head>
<body>
This is startup Page
<br />
<fieldset>
<legend>Student Info</legend>
Name: <input type="text" size="30"><br>
Email: <input type="text" size="30"><br>
</fieldset>
<form method="get">
Name:<br>
<input type="text" name="firstname"><br>
Email:<br>
<input type="text" name="lastname">
<br><br>
<input type="submit" value="Submit">
</form>
<div class="container">
<div class="panel panel-primary">
<div class="panel-body">
<h3 class="text-on-pannel text-primary"><strong class="text-uppercase"> Title </strong></h3>
<p> Your Code </p>
</div>
</div>
<div>
<form>
<fieldset class="well">
<legend class="well-legend">Group Box Legend</legend>
... your inputs ...
</fieldset>
</form>
</body>
</html>