-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (57 loc) · 2.86 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
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
<!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 href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<title>Document</title>
<style>
.card{
box-shadow: 0 0 0px rgb(0, 0, 0, 0.5) !important;
}
.card:hover{
box-shadow: 0 0 6px 2px rgb(0 0 0 / 13%) !important;
}
.card-img-top{
height: 180px;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<h1>WebDev 101 Projects</h1>
</div>
<div class="row mt-5 mb-5" style="row-gap: 3rem;">
<div class="card m-auto" style="width: 18rem;border-radius:20px; box-shadow:0 0 2px rgb(0, 0, 0, 0.5)" >
<!-- <div class="card-header text-center fw-bold fs-4">Card Title</div> -->
<img src="HTML - Personal Site/images/ss.png" class="card-img-top mt-3" alt="...">
<div class="card-body">
<h5 class="card-title fw-bold">Personal Site</h5>
<p class="card-text">This website is is a portfolio based on only HTML.</p>
<a href="HTML - Personal Site/" class="btn btn-block btn-outline-primary w-100 ">Visit</a>
</div>
</div>
<div class="card m-auto" style="width: 18rem;border-radius:20px; box-shadow:0 0 2px rgb(0, 0, 0, 0.5)" >
<!-- <div class="card-header text-center fw-bold fs-4">Card Title</div> -->
<img src="CSS - My Site/images/ss.png" class="card-img-top mt-3" alt="...">
<div class="card-body">
<h5 class="card-title fw-bold">Personal Portfolio</h5>
<p class="card-text">This website is is a portfolio based on HTML and CSS.</p>
<a href="1. HTML - Personal Site/" class="btn btn-block btn-outline-primary w-100 ">Visit</a>
</div>
</div>
<div class="card m-auto" style="width: 18rem;border-radius:20px; box-shadow:0 0 2px rgb(0, 0, 0, 0.5)" >
<!-- <div class="card-header text-center fw-bold fs-4">Card Title</div> -->
<img src="TinDog/images/ss.png" class="card-img-top mt-3" alt="...">
<div class="card-body">
<h5 class="card-title fw-bold">Tindog</h5>
<p class="card-text">This is very basic portfolio. It is created using HTML and css. </p>
<a href="TinDog/" class="btn btn-block btn-outline-primary w-100 ">Visit</a>
</div>
</div>
</div>
</div>
</body>
</html>