-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.html
87 lines (69 loc) · 2.64 KB
/
home.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
83
84
85
86
87
<!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>NetUs | Home</title>
<meta content="NetUs" property="og:title" />
<meta
content="A place where you can bring ALL your social media accounts into one platform and make meaningful discussions!"
property="og:description" />
<meta content="http://www.netus.tk:8080/NetUs/home" property="og:url" />
<meta content="http://www.netus.tk:8080/NetUs/assets/NetUSIcon.PNG" property="og:image" />
<meta content="#00ccd3" data-react-helmet="true" name="theme-color" />
<link rel="stylesheet" href="css/cssassets.css">
<link rel="stylesheet" href="css/darkMode.css">
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="css/cards.css">
<link rel="stylesheet" href="css/info.css">
<link rel="icon" type="image/png" href="assets/NetUSIcon.PNG">
</head>
<body>
<div class="navbar">
<a class="navbar_item active" href="home.html">
Home
</a>
<a class="navbar_item" href="explore.html">
Explore
</a>
<a class="navbar_item" href="connections.html">
Connections
</a>
<a class="navbar_item" href="profile.html">
Profile
</a>
<a class="navbar_item" href="about.html">
About
</a>
<a class="navbar_item login toBeGone" href="login.html">
Login
</a>
<a class="navbar_item login toBeGone" href="signup.html">
Sign up
</a>
<a class="navbar_item login">
<label class="switch" id="switch">
<input type="checkbox" id="box">
<span class="slider round"></span>
</label>
</a>
</div>
<div>
<img class="image" src="assets/peer.PNG">
<p class="wel">Welcome to NetUs</p>
<p class="para">A place where you can bring ALL your social media accounts into one platform and make
meaningful discussions</p>
<p class="try">Try it Out today!</p>
<a href="signup.html" class="button toBeGone"> Sign Up </a>
</div>
<div class="cards" id="cards">
</div>
<div class="button2">
<input type="button" class="loadmore" onclick="loadMore()" value="Load More">
</div>
<script type="text/javascript" src="js/cards.js"></script>
<script type="text/javascript" src="js/show-on-scroll.js"></script>
<script type="text/javascript" src="js/switchlistener.js"></script>
</body>
</html>