-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractice.html
62 lines (62 loc) · 2.04 KB
/
practice.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Abel&display=swap"
rel="stylesheet"
/>
</head>
<body
style="
background: linear-gradient(to bottom, #00ff00, #00cc00, #009900);
"
>
<div
class="d-flex align-items-center justify-content-center"
style="height: 100vh"
>
<img
src="Media/PassportSize_AbdullahAhmad_w_trans.png"
alt=""
class="mx-3"
style="
background-color: rgb(44, 163, 44);
border-radius: 100%;
border: 10px darkgreen solid;
"
width="400px"
height="400px"
/>
<div class="text-center mx-3 text-white">
<h2
style="
font-family: 'Abel', sans-serif;
font-size: 48px;
background-color: royalblue;
"
class="px-2 my-5"
>
CUSTOM MADE WEBSITES
</h2>
<img
src="Media/html_css_js.png"
alt=""
height="129.6px"
width="332.7px"
class="d-block mx-auto my-5"
/>
</div>
</div>
</body>
</html>