-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperformance.html
75 lines (63 loc) · 3.44 KB
/
performance.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
<!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">
<!-- CSS files -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
<link rel="stylesheet" href="styles.css">
<title>Net-Track</title>
</head>
<body>
<!--navbar which is the navigation bar-->
<nav class="navbar navbar-expand-lg bg-dark navbar-dark py-3">
<div class="container">
<a href="index.html" class="navbar-brand" style="font-size: x-large; font-weight: 700; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">
<img src="images/logo.png" alt="" width="40" height="40" class="d-inline-block align-text-center"
style="border-radius: 25%;" >
Net-Track
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navmenu">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navmenu">
<ul class="navbar-nav ms-auto">
<li class="nav-items">
<a href="scan.html" class="nav-link">Scan Center</a>
</li>
<li class="nav-items">
<a href="vpn.html" class="nav-link">VPN</a>
</li>
<li class="nav-items">
<a href="#" class="nav-link">System Performance</a>
</li>
<li class="nav-items">
<a href="subscription.html" class="nav-link">Subscription</a>
</li>
<li class="nav-items">
<a href="#about" class="nav-link">About</a>
</li>
</ul>
</div>
</div>
</nav>
<!--showcase which is a ssection -->
<section class="bg-light text-dark p-5 p-lg-0 pt-lg-5 text-center text-sm-start">
<div class="container">
<div class="d-sm-flex justify-content-between align-items-center">
<div>
<h1>Here We Introduce <span class="text-warning">SYSTEM PERFORMANCE</span></h1>
<p class="lead my-4" >
Net-Track is a tool that can be downloaded in your system to check the security serformance and privacy of your system. Also has a subscrition model so that u can get access to more premium items.
</p>
</div>
<img class="img-fluid w-50 shadow-lg p-3 mb-5 bg-body rounded" src="images/performance.png" alt="" style=" border-radius: 15px;" >
</div>
</div>
</section>
<!-- javascript bundles -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>