22 lines
600 B
HTML
22 lines
600 B
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>Welcome to DevChat</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
padding: 50px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to DevChat!</h1>
|
|
<p>Together, let's craft amazing code and documentation!</p>
|
|
<p>To start, kindly open a Git or SVN repository folder and let's chat!</p>
|
|
</body>
|
|
</html>
|