-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (68 loc) · 2.71 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS3 Perspective Laboratory</title>
<link rel="stylesheet" href="./src/css/styles.css">
<script src="https://kit.fontawesome.com/bd8a3be228.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<h1 class="title">Perspective experiments with CSS3</h1>
</header>
<section class="grid">
<div class="mario-wrapper card">
<a href="./mario/index.html" target="_blank">
<img src="./src/img/Mario-perspective.png" alt="mario perspective cover" class="covers">
</a>
</div>
<div class="naturo-wrapper card">
<a href="./naruto/index.html" target="_blank">
<img src="./src/img/Naruto-perspective.png" alt="naruto perspective cover" class="covers">
</a>
</div>
<div class="edc-wrapper card">
<a href="./edc/index.html" target="_blank">
<img src="./src/img/EDC-perspective.png" alt="EDC perspective cover" class="covers">
</a>
</div>
</section>
<footer>
<div class="stack">
<div class="icons">
<i class="fab fa-css3-alt"></i>
<i class="fab fa-html5"></i>
</div>
<p class="caption">
Developed with HTML5 and CSS3. Using perspective property and transformations.
</p>
</div>
<div class="credits">
<div class="media">
<a href="https://co.linkedin.com/in/carlos-esteban-le%C3%B3n-pinilla-a646a9125?trk=profile-badge" class="link-media" target="_blank">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="https://carlosleoncode.com/" class="link-media website" target="_blank">
<i class="fas fa-pager"></i>
</a>
<a href="https://github.com/CarlosLeonCode" class="link-media" target="_blank">
<i class="fab fa-github-alt"></i>
</a>
</div>
<p class="caption">
Develop by Carlos León © <span id="footYear"></span>
</p>
</div>
<div class="notice">
<p>
All resources are linked by official marks, they aren't use for profit.
Images are linked by Copyright. If you have some reclamation just send me a
message to <i>carlosleoncode@gmail.com </i> ✌️
</p>
</div>
</footer>
<script src="./src/js/utils.js"></script>
</body>
</html>