-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
30 lines (24 loc) · 962 Bytes
/
index2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="justcss.css">
<title>Just HTML Test</title>
</head>
<body style="margin: 0;">
<header style="display: flex; justify-content:center; background-color:var(--container-brand); color:var(--content-white);width: 100vw;">
<div id="header_content" style="display: flex;justify-content: space-between; width: 80%; max-width: 1024px;">
<span style="padding: 16px;">JustHTML</span>
<nav>
<ul style="display: flex; padding: 0px 16px; list-style:none; gap: 16px;">
<li>Home</li>
<li>Projects</li>
<li>Case Studies</li>
<li>Contact</li>
</ul>
</nav>
</div>
</header>
</body>
</html>