-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
84 lines (84 loc) · 2 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jitesh</title>
<style>
body{
background-attachment: fixed;
background-image: url("BG.jpg");
background-position: center;
height: 100vh;
position: relative;
margin: 0;
}
h1
{
font-size: x-large;
font-family: verdana,sans-serif,arial;
color: White;
text-align: center;
margin: 0px 20px 0px 0px;
padding: 10px 10px 10px 10px;
}
h2
{
font-size: x-large;
font-family: verdana,sans-serif,arial;
background-color: #85C1E9;
color: #34495E;
text-align: right;
margin: 0px 20px 0px 0px;
padding: 10px 10px 10px 10px;
}
p{
color: #F8F9F9 ;
font-family: verdana,sans-serif,arial;
font-size: large;
text-align: left;
margin: 0px 0px 0px 50px;
}
.Profilepic{
background-attachment: fixed;
margin: 10px 10px 10px 10px ;
width: 40%;
}
.con{
display: flex;
flex-direction: coloumn;
}
.con1{
background-color: #85C1E9;
height: 10%;
width: 100%;
}
.con2{
display: flex;
flex-direction: row;
}
.but{
background-color: white;
text-align: right;
height: 40px;
width: 120px;
}
</style>
</head>
<body>
<div class="con1">
<a href="about.html"><h2>About Me</h2></a>
</div>
<div class="con">
<img class="Profilepic" src="Jitesh.jpg" height="500px">
<div class="con2">
<h1>Jitesh Kumar Verma</h1> <br>
<h1>Welcomes You</h1>
<p> Slim Profile, easy to handle and loaded with ease.<br>This is the one you have been waiting for</p>
</div>
</div>
<div class="con1">
<h2><input class="but" type="button" value="Learn more -->"/></h2>
</div>
</body>
</html>