forked from chetnagrover00/JavaScript-Mini-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 1.03 KB
/
index.html
File metadata and controls
28 lines (25 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Acme&family=Recursive:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Counter</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container"><br>
<a href="https://www.linkedin.com/in/chetna-grover-613a581a4/">
<i class="fab fa-linkedin fa-2x"></i></a>
<h1 id="counter" style="color:black">0</h1>
<p id="followers">Connections</p>
</div>
<h1>--------------------------------------------------------</h1>
<footer>
Made with <i class="fas fa-heart"></i> by <a href=https://www.linkedin.com/in/chetna-grover-613a581a4/>@Chetna Grover</a>
</footer>
<script src="script.js"></script>
</body>
</html>