-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
91 lines (79 loc) · 2.01 KB
/
index.php
File metadata and controls
91 lines (79 loc) · 2.01 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
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/?>
<html>
<head>
<style type="text/css">
body{
width:100%;
height:100%;
}
.header h1{
float:left;
font-size:55px;
margin-left:5px;
margin-top:-5px;
float:left;
color:#4e4e4e;
}
.header p{
font-size: 25px;
margin-top:25px;
margin-left:20px;
float:left;
color:#535353;
}
.header{
margin-top:10px;
font-family:'Verdana';
width:100%;
height:50px;
margin-left:150px;
color:#2e2e2e;
}
.header img{
float:left;
}
.container{
width:80%;
margin-left:10%;
margin-top:12%;
}
.container p{
font-size: 80px;
color:#616161;
}
.field{
width:50%;
height:70px;
float:left;
font-size: 50px;
color:#f15500;
}
.submit{
background-color: green;
color:white;
width:25%;
font-size: 40px;
height:71px;
margin-top:-1px;
float:left;
}
</style>
<title>NAMEZARD-Create Your Brand Name With a click </title>
</head>
<body>
<div class="header"><img src="LOGO.png"/><h1>namezard</h1><p>Create Brand names with a click</p></div>
<div class="container">
<form method="GET" action="get_names.php">
<p> What is your Brand about?</p><input class="field" name="hint" type="text">
<input class="submit" value="Create Name" type="submit">
</form>
</div>
</body>
</html>
<?php
?>