-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (89 loc) · 3.03 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tofik Kazimov</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<style>
.rounded-img {
width: 60%;
border-radius: 50%;
box-shadow: 0 0 10px rgba(26, 9, 9, 0.4);
padding: 0.6em;
margin-bottom: 1em;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand p-0" href="/">
<img src="bmw.png" alt="Logo" width="80" />
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="places.html">Favorite places</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container text-center my-5">
<div class="row">
<div class="col-lg-6 col-md-8 mx-auto">
<img class="rounded-img" src="BMW.jpg" alt="bmw" />
<h1 class="fw-light">Tofik Kazimov</h1>
<p class="lead text-muted">
I am excitet to teach you software development.I am excitet to teach
you software development.I am excitet to teach you software
development
</p>
<a
href="https://www.bmw.de/de/index.html"
target="_blank"
class="btn btn-primary"
>
!BMW!
</a>
<a
href="https://www.youtube.com/watch?v=W4MIiV4nZDY&t=3498s"
target="_blank"
class="btn btn-secondary"
>
Youtube
</a>
</div>
</div>
</div>
</body>
</html>