-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGroup5.html
More file actions
53 lines (36 loc) · 1.44 KB
/
Group5.html
File metadata and controls
53 lines (36 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Group 5</title>
<link rel="stylesheet" href="../css/example.css"> <!-- PATH WITH STYLESHEET -->
<link rel="stylesheet" href="./css/group5.css">
</head>
<body>
<img src="img/file-path.jpg" alt=""> <!-- PATH WITH IMAGE TAG -->
<!-------------------- HIDDEN VS NONE ------------------------------->
<div>
<div class="group5display">I'm hidden</div>
<p class="white-style">Difference between display:none and visiblity: hidden</p>
<ul class="white-style">
<li><em>visibility:hidden</em> hides the element, but it still takes up space in the layout</li>
<li><em>display:none</em> removes the element from the document. It does not take up any space.</li>
</ul>
</div>
<br>
<!----------------------- ANIMATION ---------------------------------->
<div class="colors"></div>
<!--<div class="rotate"></div>-->
<!--<div class="slide">I am sliding</div>-->
<!--<div class="size-change">I am changing size</div>-->
<!-------------------- FADED IMAGES ---------------------------------->
<div class="fade-in-image">
<img width="500px" src="./img/Mercedes.jpeg">
</div>
<div class="background">
<div class="blur"></div>
</div>
<img class="background" src="./img/pexels-hasan-albari-1229861.jpg" alt="Aleq">
<p><strong>Note:</strong> The filter property is not supported in Internet Explorer, Safari 5.1 and earlier versions.</p>
</body>
</html>