-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My site</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<style>
.rounded_image {
width: 80%;
border-radius: 10%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
padding: 0.6em;
margin-bottom: 1em;
}
</style>
</head>
<body>
<div class="container text-center my-5">
<div class="row">
<div class="col-lg-6 mx-auto">
<img src="images/dog.png" alt="dog" class="rounded_image"/>
<h1 class="fw-light">Dog</h1>
<p class="lead text-muted">This is just a pretty website</p>
<a href="https://youtube.com" target="_blank" class="btn btn-primary">
Youtube
</a>
</div>
</div>
</div>
</body>
</html>