forked from khushi-purwar/WebDev-ProjectKart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (42 loc) · 2.65 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
<!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">
<title>WebDev Projectkart</title>
<!-- linking custum stylesheet -->
<link rel="stylesheet" href="./style.css">
<!-- linking google fonts -->
<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=Roboto:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<!-- ********** Main coding for website starts from here ********** -->
<main>
<h1>WebDev ProjectKart</h1>
<h3>01. Password Generator : <a href="./01.Password_Generator/" target="blank">Password_Generator</a></h3>
<h3>02. BMI Calculator : <a href="./02.BMI_Calculator/" target="blank">BMI_Calculator</a></h3>
<h3>03. Tip Calculator : <a href="./03.TIP_Calculator/" target="blank">TIP_Calculator</a></h3>
<h3>04. Vat Calculator : <a href="./04.VAT_Calculator/" target="blank">VAT_Calculator</a></h3>
<h3>05. Digital Clock : <a href="./05.Digital_Clock/" target="blank">Digital_Clock</a></h3>
<h3>06. Loan Calculator : <a href="./06.Loan_Calculator/" target="blank">Loan_Calculator</a></h3>
<h3>07. Coin Toss App : <a href="./07.Coin_Toss_App/" target="blank">Coin_Toss_App</a></h3>
<h3>08. Calculator : <a href="./08.Calculator/" target="blank">Calculator</a></h3>
<h3>09. Quote Generator : <a href="./09.Quote_Generator/" target="blank">Quote_Generator</a></h3>
<h3>10. Battery Indicator App : <a href="./10.Battery_Indicator_App/" target="blank">Battery_Indicator_App</a></h3>
<h3>11. Contact Us Form : <a href="./11.Contact_Us_Form/" target="blank">Contact_Us_Form</a></h3>
<h3>12.Analog Clock : <a href="./12.Analog_Clock/" target="blank">Analog_Clock</a></h3>
<h3>13. Headlines : <a href="./13.Headlines/" target="blank">Headlines</a></h3>
<h3>14. Todo App : <a href="./14.Todo_App/" target="blank">Todo_App</a></h3>
<h3>15. Weather Application : <a href="./15.Weather_Application/" target="blank">Weather_Application</a></h3>
<br><br><br><br><br>
</main>
<!-- ********** Main coding for website ends here ********** -->
<!-- linking font awesone -->
<script src="https://kit.fontawesome.com/fd33b06809.js" crossorigin="anonymous"></script>
<!-- linking custum javascript file -->
<script src="./javascript/index.js"></script>
</body>
</html>