-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (67 loc) · 2.6 KB
/
Copy pathindex.html
File metadata and controls
83 lines (67 loc) · 2.6 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
75
76
77
78
79
80
81
82
83
<!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> 🤓 eloquentjs-es.thedojo.mx</title>
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="hero">
<div class="textos-hero">
<h1>Welcome to Eloquent Javascript</h1>
<p>I hope to help you</p>
</div>
<div class="svg-hero" style="height: 150px; overflow: hidden">
<svg
viewBox="0 0 500 150"
preserveAspectRatio="none"
style="height: 100%; width: 100%"
>
<path
d="M-1.97,63.64 C149.99,150.00 426.91,-79.44 500.00,49.98 L500.00,150.00 L0.00,150.00 Z"
style="stroke: none; fill: rgb(253, 253, 234)"
></path>
</svg>
</div>
</header>
<section >
<h2 class="title">Solutions</h2>
<div class="content-cards">
<article class="card">
<section class="swiper mySwiper">
<div class="swiper-wrapper" id="DomCards"></div>
</section>
</article>
</section>
<br><br><br>
<section >
<h2 class="title">Notes by subject of the book</h2>
<div class="content-cards">
<article class="card cardNotes">
<article class="notes">
</article>
</div>
</section>
<section class="footer">
<a href="https://www.linkedin.com/in/davinamedina/" class="logo_in"><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR8Sxz9hleTpcbnV8dojwBHP2BFeZRF23meFCTb1ybxD7taKdc7GAl_ZVWYw3uV11S32yQ&usqp=CAU" alt=""></a>
<div class="svg-wave" style="height: 150px; overflow: hidden">
<svg
viewBox="0 0 500 150"
preserveAspectRatio="none"
style="height: 100%; width: 100%"
>
<path
d="M-1.97,63.64 C149.99,150.00 426.91,-79.44 500.00,49.98 L500.00,150.00 L0.00,150.00 Z"
style="stroke: none; fill: rgb(233, 216, 159)"
></path>
</svg>
</div>
</section>
</body>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script src="./chapters/chapter4.js"></script>
<script src="main.js"></script>
</html>