-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 1020 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
31
<!DOCTYPE html>
<html lang="en">
<head>
<!-- ? META DATA -->
<meta name="author" content="Andre Ferreira" />
<!--? https://github.com/Namonaki0/PhotoGeneration -->
<meta name="description" content="fetch photos through search" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--? STYLESHEETS -->
<link rel="stylesheet" href="./style.css" />
<title>Photo Generation</title>
</head>
<body>
<h2><a href="./index.html" id="logo">Photo Generation</a></h2>
<form id="search-form">
<input type="text" name="seach" class="search-input" />
<input type="submit" class="submit-btn" />
</form>
<main>
<div class="gallery"></div>
</main>
<div class="nav-btn">
<button class="more">MORE</button>
</div>
<script type="module" src="./app.js"></script>
</body>
</html>
<!-- * designed and developed by Andre Ferreira @ www.andreferreiradev.com * -->