-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblending.html
More file actions
55 lines (50 loc) · 2.3 KB
/
blending.html
File metadata and controls
55 lines (50 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>blending</title>
<link rel="stylesheet" href="blending.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="heading">
<p>TroWeld</p>
<p><i class="fa-solid fa-location-dot" style="color: #1d5ac3;"></i>Location</p>
<p><i class="fa-solid fa-phone" style="color: #215bc0;"></i>Call:+01 123455678990</p>
<p><i class="fa-solid fa-envelope" style="color: #2d66c8;"></i>Mail@domain.com</p>
<div class="icon">
<i class="fa-brands fa-facebook" style="color: #306acf;"></i>
<i class="fa-brands fa-twitter" style="color: #2662c9;"></i>
<i class="fa-brands fa-linkedin-in" style="color: #3165bf;"></i>
<i class="fa-brands fa-instagram" style="color: #2e5fb2;"></i>
</div>
</div>
<!-- header section start from here -->
<header id="navbar">
<nav>
<ul>
<li style="text-decoration: d;"><a href="" >HOME</a></li>
<li><a href="">SERVICE</a></li>
<li><a href="">ABOUT</a></li>
<li><a href="">PORTFOLIO</a></li>
<li><a href="">CONTACT US</a></li>
<li><a href=""><i class="fa-solid fa-user" style="color: #f8faf4;"></i>LOGIN</a></li>
<li><a href=""><i class="fa-solid fa-magnifying-glass" style="color: #fafcff;"></i></a></li>
</ul>
</nav>
</header>
<!-- main section start from here -->
<main>
<section id="mainpage">
<h1>We Build <br>
The Things Architects <br>
Dream Up</h1>
<div class="btn">
<button style="font-size: 30px; background: none; border: none; color: white; border: 3px solid black;">Read more</button>
<button style="font-size: 30px;background: none; border: none; color: white; border: 3px solid black;">Conatct us</button>
</div>
</section>
</main>
</body>
</html>