-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcat.html
More file actions
42 lines (37 loc) · 1.58 KB
/
cat.html
File metadata and controls
42 lines (37 loc) · 1.58 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=La+Belle+Aurore&display=swap" rel="stylesheet">
<link rel="stylesheet" href="main.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<title>Hello, kitty!</title>
</head>
<body>
<div>
<nav class="navbar-fluid">
<ul class="navbar-nav">
<li class="nav-items"><a class="more-cat-link" href="">More cat</a></li>
</ul>
</nav>
</div>
</section>
<section id="about-cat">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-6 col-xl-6">
<p class="about-my-cat">What Greater Gift Than The Love Of a Cat.</p>
<p class="author-name">Charles Dickens</p>
</div>
<div class="col-sm-12 col-md-12 col-lg-6 col-xl-6">
<img class="cat-pic" src="cat.jpg" alt="here goes my cat">
</div>
</div>
</section>
</body>
</html>