-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
74 lines (59 loc) · 1.92 KB
/
about.html
File metadata and controls
74 lines (59 loc) · 1.92 KB
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
<! DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
body,html{
height: 100%;
}
.parallax {
background-image:url("ben.jpg");
height: 70%;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.parallax1{
background-image:url("sherlock.jpg");
height: 70%;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
div.transbox {
margin: 30px;
background-color: transparent;
filter: alpha(opacity=60); /* For IE8 and earlier */
}
div.transbox p {
margin: 5%;
font-weight: bold;
font-family: Arial;
color: #000000;
}
.work span.caption{
background-color: #111;
color: #fff;
padding: 18px;
font-size: 25px;
letter-spacing: 10px;
}
</style>
</head>
<body>
<div class="parallax"></div>
<div class="transbox">
<div class="work">
<span class="caption">BENEDICT CUMBERBATCH</span>
</div>
<p>Benedict Timothy Carlton Cumberbatch CBE (born 19 July 1976)[2] is an English actor who has performed in film, television, theatre and radio. Cumberbatch graduated from the University of Manchester and continued his training at the London Academy of Music and Dramatic Art, obtaining a Master of Arts in Classical Acting. He first performed at the Open Air Theatre, Regent's Park in Shakespearean productions and made his West End debut in Richard Eyre's revival of Hedda Gabler in 2005. Since then he has starred in the Royal National Theatre productions After the Dance (2010) and Frankenstein (2011). In 2015, he played William Shakespeare's Hamlet at the Barbican Theatre.</p>
</div>
<div class="parallax1"></div>
</body>
</html>