-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (42 loc) · 2.23 KB
/
index.html
File metadata and controls
47 lines (42 loc) · 2.23 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
<!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">
<link rel="stylesheet" href="assets/css/styles.css">
<title>Document</title>
</head>
<body>
<h1 class="text-primary bg-black">Boilerplate HTML+CSS+JS</h1>
<h1 class="text-secondary bg-warning">Boilerplate HTML+CSS+JS</h1>
<h1 class="text-success bg-dark">Boilerplate HTML+CSS+JS</h1>
<h1 class="text-danger">Boilerplate HTML+CSS+JS</h1>
<h1 class="text-warning">Boilerplate HTML+CSS+JS</h1>
<h1 class="text-light">Boilerplate HTML+CSS+JS</h1>
<h1 class="text-dark">Boilerplate HTML+CSS+JS</h1>
<!-- <img src="assets/images/logo-top-ucamp.png" alt="logo"> -->
<button type="button" class="btn btn-primary">Click aqui!</button>
<button type="button" class="btn btn-secondary">Click aqui!</button>
<button type="button" class="btn btn-success">Click aqui!</button>
<button type="button" class="btn btn-danger">Click aqui!</button>
<button type="button" class="btn btn-warning">Click aqui!</button>
<button type="button" class="btn btn-light">Click aqui!</button>
<button type="button" class="btn btn-dark">Click aqui!</button>
<div class="container">
<div class="row border">
<div class="col-md-8 col-lg-12">
<h1>Columna izquierda</h1>
<button type="button" class="btn btn-primary mt-5 mb-5 ms-5">Demo</button>
</div>
<div class="col-md-4 col-lg-6 bg-success-subtle">
<h1>Columna derecha</h1>
<button type="button" class="btn btn-primary mt-5 mb-5">Demo</button>
</div>
</div>
</div>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="assets/js/index.js"></script>
</body>
</html>