-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp2.php
More file actions
32 lines (32 loc) · 654 Bytes
/
p2.php
File metadata and controls
32 lines (32 loc) · 654 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<style>
body{
top: 40%;
background-image: url('p2_img1.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: left;
bottom: 40%;
background-size: 100%;
}
.div1{
position: absolute;
top: 40%;
left: 40%;
height: 100px;
width: 400px;
}
.p1{
color:white; font-family:verdana;
}
</style>
</head>
<body>
<div class="div1">
<p class="p1" style="font-size:24px;"> <b>SUST CSE Developer Network</b> </p>
<p class="p1" style="font-size:10px;"> <b><?php echo 'CSE,SUST' ?></b> </p>
</div>
</body>
</html>