-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject1.html
More file actions
43 lines (34 loc) · 869 Bytes
/
Copy pathProject1.html
File metadata and controls
43 lines (34 loc) · 869 Bytes
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
<!Doctype html>
<html>
<head>
<title></title>
<style>
body{
text-align:center;
background:url("https://i.imgur.com/bxjN9WI.jpg");
background-size:cover;
font-family:helvetica;
color:white;
}
p{
font-size:20px;}
img{
margin-top:30px;
border-radius:50%;
}
input{
padding:5px;
border:none;
font-size:15px;}
input[type="submit"]{
background:red;
}
</style>
</head>
<body>
<img src="https://i.imgur.com/YvUPzII.jpg">
<p>Hello,am debo,the about to be FRONT END WEB DEVELOPER</p>
<input type="e-mail" placeholder="Enter your Email">
<input type="submit">
</body>
</html>