-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPhotographProfile.html
106 lines (101 loc) · 2.47 KB
/
PhotographProfile.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap -->
<link href="css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<title>Photographs</title>
<style>
.background img{
position: fixed;
width: 100%;
left: 0;
top: 0;
z-index: -1;
}
.right img{
position: fixed;
width: 100%;
left: 0;
top: 0;
z-index: -1;
}
.left{
width: 27%;
height: 100%;
position: fixed;
}
.left h1{
margin: 1px auto;
padding-top: 20%;
text-align: center;
}
.left p{
margin: 1px auto;
font-size: 1.5rem;
padding-top: 20%;
text-align: center;
}
.left img{
margin: 1px auto;
width: 20rem;
padding-top: 20%;
left: 21%;
top: 13rem;
position: relative;
}
.toolti img{
z-index: 3;
position: fixed;
}
</style>
</head>
<body>
<div class="background">
<img class="animated fadeInLeft" src="images/profile_background_left.png" alt="">
</div>
<div class="toolti">
<img src="images/menu.png" alt="" style="
top: 2rem;
right: 2rem;
width: 2rem;
">
<img src="images/up.png" alt="" style="
bottom: 8rem;
right: 2rem;
width: 2rem;
">
<img src="images/down.png" alt="" style="
bottom: 5rem;
right: 2rem;
width: 2rem;
">
<img src="images/cancel.png" alt="" style="
bottom: 13rem;
right: 2rem;
width: 2rem;
">
</div>
<div class="left">
<h1 class="animated fadeInDown ">JACK</h1>
<p class="animated fadeInDown">
« Mon travail ?
Arrêter le temps. »
</p>
<img class="animated fadeInUp" src="images/sign.png" alt="">
</div>
<div class="right">
<img class=" animated fadeInRight" src="images/photographer_profile.png" alt="">
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery-1.11.2.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.js"></script>
</body>
</html>