forked from cristianuevo/ejemploHtml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (110 loc) · 5.63 KB
/
index.html
File metadata and controls
120 lines (110 loc) · 5.63 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Ejercicio</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel="icon" href="https://upload.wikimedia.org/wikipedia/commons/0/00/HTML5_logo_black.svg">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<style>
@import url('https://fonts.googleapis.com/css2?family=Amaranth&display=swap');
h1, h2, h5{
font-family: 'Amaranth', sans-serif;
}
</style>
</head>
<body>
<div class="container pt-4">
<div class="row ">
<div class="col">
<h1>Texto 1</h1>
</div>
<div class="col text-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/0/00/HTML5_logo_black.svg" alt="Logo GitHub" style="width: 80%;">
</div>
<div class="col">
</div>
</div>
<div class="row text-center">
<div class="col-4"></div>
<div class="col-4">
<p><h2>Texto 2</h2></p>
</div>
<div class="col-4"></div>
</div>
<div class="row text-center">
<div class="col-3"></div>
<div class="col-6">
<p><b>Ejercicio básico HTML</p>
</div>
<div class="col-3"></div>
</div>
<div class="row pt-4 pb-3">
<div class="col-4">
<div class="card" style="width: 18rem;">
<img src="https://cdn-icons-png.flaticon.com/512/1177/1177568.png" class="card-img-top pt-2" alt="..." style="width: 65% ; padding-left: 90px;">
<div class="card-body">
<h5 class="card-title text-center">Nombre</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<p>Link GitHub</p>
</div>
</div>
</div>
<div class="col-4">
<div class="card" style="width: 18rem;">
<img src="https://cdn-icons-png.flaticon.com/512/1177/1177568.png" class="card-img-top pt-2" alt="..." style="width: 65% ; padding-left: 90px;">
<div class="card-body">
<h5 class="card-title text-center">Nombre</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<p>Link GitHub</p>
</div>
</div>
</div>
<div class="col-4">
<div class="card" style="width: 18rem;">
<img src="https://cdn-icons-png.flaticon.com/512/1177/1177568.png" class="card-img-top pt-2" alt="..." style="width: 65% ; padding-left: 90px;">
<div class="card-body">
<h5 class="card-title text-center">Nombre</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<p>Link GitHub</p>
</div>
</div>
</div>
</div>
<div class="row pt-2 pb-4 text-center" >
<div class="col-4">
<div class="card" style="width: 18rem;">
<img src="https://cdn-icons-png.flaticon.com/512/1177/1177568.png" class="card-img-top pt-2" alt="..." style="width: 65% ; padding-left: 90px;">
<div class="card-body">
<h5 class="card-title text-center">Nombre</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<p>Link GitHub</p>
</div>
</div>
</div>
<div class="col-4">
<div class="card" style="width: 18rem;">
<img src="https://cdn-icons-png.flaticon.com/512/1177/1177568.png" class="card-img-top pt-2" alt="..." style="width: 60% ; padding-left: 90px;">
<div class="card-body">
<h5 class="card-title text-center">Nombre</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<p>Link GitHub</p>
</div>
</div>
</div>
<div class="col-4">
<div class="card" style="width: 18rem;">
<img src="https://cdn-icons-png.flaticon.com/512/1177/1177568.png" class="card-img-top pt-2" alt="..." style="width: 60% ; padding-left: 90px;">
<div class="card-body">
<h5 class="card-title text-center">Wendy Rendón</h5>
<p class="card-text">Ingeniera en Software con conocimiento en HTML, PHP, CSS, JavaScript y Bootstrap.</p>
<p><a href="https://github.com/wendy1496">Perfil de GitHub</a></p>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
</body>
</html>