-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 930 Bytes
/
index.html
File metadata and controls
29 lines (27 loc) · 930 Bytes
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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our dev team - Home</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class='navbar'>
<a href="index.html"><div class='nav-button'>Home</div></a>
<a href="about.html"><div class='nav-button'>About</div></a>
<a href="team.html"><div class='nav-button'>Team</div></a>
<a href="contact.html"><div class='nav-button'>Contact</div></a>
</div>
<div class='main'>
<div class="title">
CW Dev Team 001
</div>
<div class="subtitle">
Together we can code ANYTHING !
</div>
</div>
</div>
</body>
</html>