-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 839 Bytes
/
index.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello!</title>
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css">
<!-- import the webpage's javascript file -->
<script src="/script.js" defer></script>
</head>
<body>
<div class="navbar">
<a>Home</a>
<a>About Us</a>
<a>Our Portfolios</a>
<a>Contact Us</a>
</div>
<div class="image-content">
<h1>
Welcome to Code Nation Fellowship I at **COMPANY NAME**!
</h1>
<img src="https://cdn.glitch.com/3f130f92-c599-4005-ae95-c6cd19387185%2Ffirst-step-orange.gif?v=1590094026930">
</div>
</body>
</html>