-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (46 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>change Theme</title>
<!--Google Font-->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap"
rel="stylesheet"
/>
<!--Stylesheet-->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="container">
<div class="card">
<img src="image/Screenshot_20211220-232523.png" alt="profile_img" />
<h4>Taha Yazdani</h4>
<h5>Junior Web Developer</h5>
<div class="details">
<div class="column">
<h2>1.6K</h2>
<span>Followers</span>
</div>
<div class="column">
<h2>852</h2>
<span>Following</span>
</div>
</div>
<div class="buttons">
<button>Follow</button>
<button>Message</button>
</div>
</div>
<div class="themes">
<button class="btn btn1" data-color="#3498db"></button>
<button class="btn btn2" data-color="#ff1756"></button>
<button class="btn btn3" data-color="#1cb65d"></button>
<button class="btn btn4" data-color="#8e44ad"></button>
<button class="btn btn5" data-color="#f4b932"></button>
</div>
</div>
<!--Script-->
<script src="js/script.js"></script>
</body>
</html>