Skip to content
Permalink
22be3406fc
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
32 lines (23 sloc) 1.02 KB
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="theme-color" content="#f00" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mobile App Development Room Chat</title>
<link href="css/main.css" rel="stylesheet">
<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" href="img/logo57.png.png"/>
<link href="https://fonts.googleapis.com/css?family=Advent+Pro&display=swap" rel="stylesheet">
</head>
<body>
<header><h1>~Meira's Mobile App Chat Room~</h1></header>
<a href="http://https://github.uconn.edu/pages/met18001/mobile-app-chat-app/profile.html"><img src="img/mvp.png" alt=""></a>
<div id="chatBox">
<div id="chatInput">
<input type="Text" id="newMsg" placeholder=" Type a Messege!">
<button id="sendBtn">Send messege</button>
</div>
<script src="js/main.js"></script>
</body>
</html>