-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (42 loc) · 1.35 KB
/
index.html
File metadata and controls
43 lines (42 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="description"
content="Fetch Github Projects By Your Username Using HTML5 , CSS3 and JS"
/>
<meta
name="keywords"
content="Github , Projects , Username , Fetch , HTML5 , CSS3 , JS "
/>
<meta name="author" content="Khazri" />
<link rel="shortcut icon" href="images/logo.png" type="image/x-icon" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Github Projects</title>
<!--CDN Fonteawesome-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!--Link CSS-->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h3>Github Projects</h3>
<main class="repos-container">
<div class="repos-form">
<input type="text" placeholder="Enter Username" />
<button>Show</button>
</div>
<div class="repos-box">
<div class="message">No Repositories To Show !</div>
</div>
</main>
<script src="main.js"></script>
</body>
</html>