Skip to content
Permalink
4ed1575daa
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
30 lines (27 sloc) 891 Bytes
<!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.0">
<title>Week-10 API Practice</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div id="menu">
<h1> UCONN GITHUB USER SEARCH</h1>
<form id="form">
<input id="textbox" type="text" placeholder="Search User">
<button type="submit">Search</button>
<p id="error">Input must be at least 1 character long!</p>
<p id="error2">No Results Found!</p>
</div>
<h2 id="matches"></h2>
<div id="results">
</div>
</div>
<p id="footer">By: Paolo Bautista</p>
<script src="main.js"></script>
</body>
</html>