Skip to content
Permalink
733a651a03
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
33 lines (25 sloc) 1.04 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>
<div class="box">
<header><h1>~Meira's Mobile App Chat Room~</h1></header>
<a href="https://github.uconn.edu/pages/met18001/mobile-app-chat-app/profile.html"><img src="img/cat.png" alt=""></a>
</div>
<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>