-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (73 loc) · 3.5 KB
/
index.html
File metadata and controls
83 lines (73 loc) · 3.5 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
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
<html lang="en">
<head>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2589301344259726"
crossorigin="anonymous"></script>
<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>LearnComp | Home</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" 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=Montserrat:wght@300&family=Poppins:wght@300&family=Shippori+Antique+B1&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Dosis:wght@200&family=Roboto:ital,wght@1,700&display=swap" rel="stylesheet">
<meta
name="description"
content="LearnComp is the best site to learn about computers for free. It is a static site, therefore no sign-in/sign-up is required. "
/>
<link
rel="sitemap"
type="application/xml"
title="Sitemap"
href="sitemap.xml"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,700&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Dosis:wght@200&family=Roboto:ital,wght@1,700&display=swap"
rel="stylesheet"
/>
</head>
<body onload="loading()">
<div id="loader">
<img src="icons\preloader.gif" alt="" width="290px" height="240px">
</div>
<div class="main-div">
<div class="center-div align-items-center d-flex">
<div class="text mx-5 ">
<!-- <h1 class="title display-3">LearnComp</h1> -->
<div class="wrapper">
<div class="typing-demo">
<h1 class="title display-3">LearnComp</h1>
</div>
</div>
<p class="display-6">BEST SITE TO LEARN COMPUTER,<br> TIPS & TRICKS FOR FREE.</p>
<a href="sub-pages/category.html"><button style="font-size: 25px; border-radius: 5px; font-family: 'Roboto','san-sarif';"><b>Get Started</b></button></a>
</div>
<div class="navi">
<ul>
<a href="sub-pages/support.html"> <li><b>SUPPORT</b></li></a>
<a href="sub-pages/contact-us.html"><li><b>CONTACT US</b></li></a>
<a href="sub-pages/about.html"><li><b>ABOUT</b></li></a>
</ul>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
const loader = document.getElementById("loader")
const loading = () =>{
loader.style.display = "none"
}
</script>
</body>
</html>