-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
59 lines (50 loc) · 1.55 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel ="stylesheet" type="text/css" href="index.css">
<style>
body{
background-image:url(b1.jpg);
background-size: 100%;
background-repeat: repeat;
width: 100%;
}
.name{
text-align: center;
font-size: 90px;
broder: 1px solid rgb(124, 45, 58);
}
.btn {
border: none;
background-color: pink;
padding: 14px 28px;
font-size: 16px;
cursor:default ;
display: inline-block;
border: 5px solid red;
font-size: 20px;
cursor: pointer;
}
.btn:hover {background: #eee;}
.success {color: green;}
.info {color: dodgerblue;}
.warning {color: orange;}
.danger {color: red;}
.default {color: rgb(97, 3, 81);}
</style>
</head>
<body text="white">
<div class="name">
<!--c <h1 class="name">Wellcome in my portfolio</h1>-->
<h1 class="name">hello <br> I am shrushti!!</h1>
<h1 class="name">Wellcome in my portfolio</h1>
<img src="profile.jpg" width="300" height="400" >
<p>I request you to give me your valuable Feedback <br> it's help me to improve for next time... <br>Thank you!!</p>
<br>
<a class="btn success" href="index.html"><input type="button" name="home" >previous</button> </a>
<a class="btn warning" href="about.html"> next </a>
</body>
</html>