-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuck.html
130 lines (101 loc) · 2.28 KB
/
fuck.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css\bootstrap.css">
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
<style type="text/css">
html,body {
overflow: hidden;
position: relative;
color: #666666;
height: 100%;
font-family: "Lobster", cursive;
}
ul{
list-style-type: none;
padding: 0px;
}
.container-fluid,.row,.col-sm-2,ul{
position: relative;
height: 100%;
padding: 0px
}
.row .col-sm-10{
background-image: url("back.jpg");
background-repeat: no-repeat;
background-size: cover;
height: 100%;
}
.row .col-sm-2{
background-color: #222;
}
li{
background-color: #222;
color: #fff;
text-align: center;
border: 1px solid #555;
padding: 8px;
}
li a {
color: #fff;
text-align: center;
transition: 0.5s;
text-decoration: none;
font-family:"Lobster",cursive;
font-size: 16px;
}
li a:hover, a:active, a:focus {
color: #f75;
outline: none;
text-decoration: none;
}
.image{
display: block;
margin: auto;
padding-top: 8px;
padding-left: 70px;
}
.name{
padding-top: 8px;
}
.Name{
font-family: "Lobster", cursive;
font-size: 24px;
text-align: center;
color: #f75;
padding-bottom: 24px;
}
.col-sm-10 h1{
text-align: center;
vertical-align: middle;
color:#f75;
font-family: "Artifika",serif;
font-size: 64px;
}
</style>
<title>SAnidhya</title>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-sm-2">
<div class="image" ><img class="img-thumbnail" src="photo.jpg" width=60% ></div>
<div class="Name">Sanidhya</div>
<ul>
<li><a href="ex.html" target="home"><i class="fa fa-home icon" style="font-size: 24px;"></i><div class="name">Home</div></a></li>
<li><a href="##"><i class="fa fa-user-circle" style="font-size: 24px;"></i><div class="name">About</div></a></li>
<li><a href="####"><i class="fa fa-trophy" style="font-size: 24px;"></i><div class="name">Achievements</div></a></li>
<li><a href="###"><i class="fa fa-envelope" style="font-size: 24px;"></i><div class="name">Contact</div></a></li>
</ul>
</div>
<div class="col-sm-10" >
<frameset cols="100%">
<frame name="home" src="home.html"></frame>
</frameset>
<h1 >Sanidhya Garg</h1>
</div>
</div>
</div>
</body>
</html>