Skip to content

Commit c16c244

Browse files
defining project
1 parent 5377bf5 commit c16c244

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

design 3/index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>design 3</title>
8+
</head>
9+
<body>
10+
<header>
11+
<div class="header-container">
12+
<h1>SOFTECH</h1>
13+
<nav>
14+
<li><a href="#">HOME</a></li>
15+
<li><a href="#">ABOUT</a></li>
16+
<li><a href="#">SERVICES</a></li>
17+
<li><a href="#">PRODUCTS</a></li>
18+
<li><a href="#">CONTACT</a></li>
19+
</nav>
20+
</div>
21+
</header>
22+
</body>
23+
</html>

design 3/styles.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap");
2+
*{
3+
padding: 0;
4+
margin: 0;
5+
box-sizing: border-box;
6+
}

0 commit comments

Comments
 (0)