-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (41 loc) · 1.57 KB
/
index.html
File metadata and controls
45 lines (41 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>uHost Customers</title>
<link rel="stylesheet" href="customers.css">
</head>
<body>
<div class="container">
<div class="box one">CSS animations allows animation of most HTML elements without using JavaScript or Flash!</div>
<div class="box two">CSS Transitions
CSS transitions allows you to change property values smoothly (from one value to another), over a given duration.
<br />
Example: Mouse over the element below to see a CSS transition effect:</div>
<div class="box three">CSS transforms allow you to translate, rotate, scale, and skew elements.
<br />
A transformation is an effect that lets an element change shape, size and position.
<br />
CSS supports 2D and 3D transformations.</div>
</div>
<main>
<div>
<div class="testimonial" id="customer-1">
<div class="testimonial__image-container">
<img src="MPP-7691.jpg" class="testimonial__image">
</div>
<div class="testimonial__info">
<h1 class="testimonial__name">Roopak Kumar & Brooke Roberts</h1>
</div>
</div>
<div class="testimonial" id="customer-2">
<div class="testimonial__image-container">
<img src="MPP-7951.jpg" class="testimonial__image">
</div>
</div>
</div>
</main>
</body>
</html>