-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbutton.html
31 lines (31 loc) · 1.02 KB
/
button.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
<!DOCTYPE html>
<html>
<head>
<title>Discover</title>
<link rel="stylesheet" type="text/css" href="hstyle.css">
</head>
<body>
<nav>
<img src=url("images/logo.png") class="logo">
<ul>
<li><a href=""><i>HOME</i></a></li>
<li><a href=""><i>DISCOVER</i></a></li>
<li><a href="about.html"><i>ABOUT US</i></a></li>
<li><a href="profile.html"><i>CONTACT</i></a></li>
<li><a href="login.html"><i>LOGIN</i></a></li>
</ul>
<img src=url("images/moon.png") class="icon">
</nav>
<div class="frame">
<button class="custom-btn btn-1"><a href= "home.html">Home</a></button>
<button class="custom-btn btn-2"><a href= "glowing.html">Glow</a></button>
</div>
<div class="socialmedia-links">
<a href=""><i class="fab fa-facebook-square"></i></a>
<a href=""><i class="fab fa-instagram"></i></a>
<a href=""><i class="fab fa-twitter"></i></a>
<a href=""><i class="fab fa-linkedin-in"></i></a>
<a href=""><i class="fab fa-google-plus-square"></i></a>
</div>
</body>
</html>