Skip to content

Commit

Permalink
fix: viewport scaling to mobile view
Browse files Browse the repository at this point in the history
- update basic styles as well
  • Loading branch information
riteshsp2000 authored Dec 10, 2021
1 parent 28e46bb commit dfc9a82
Showing 1 changed file with 44 additions and 8 deletions.
52 changes: 44 additions & 8 deletions public/support/support.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,44 @@
<html>
<body>
<h2>Chat Support for Freshers</h2>
<!-- Start of HubSpot Embed Code -->
<script type="text/javascript" id="hs-script-loader" async defer src="//js.hs-scripts.com/8935877.js"></script>
<!-- End of HubSpot Embed Code -->
</body>
</html>
<!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>ICS Chat Support</title>

<style>
body {
margin: 0;
padding: 0;
background-color: #d6fdfd;
}

div {
margin: 0;
padding: 1rem;
width: 100%;
background: linear-gradient(90deg, #2A7EBC, #66BF93)
}

h2 {
font-family: sans-serif;
margin: 0;
color: white;
font-weight: 500;
letter-spacing: 2px;
}
</style>
</head>


<body>
<div>
<h2>Chat Support for Freshers</h2>
</div>
<!-- Start of HubSpot Embed Code -->
<script type="text/javascript" id="hs-script-loader" async defer src="//js.hs-scripts.com/8935877.js"></script>
<!-- End of HubSpot Embed Code -->
</body>

</html>

0 comments on commit dfc9a82

Please sign in to comment.