mirror of
https://github.com/neosubhamoy/neosubhamoy-portfolio.git
synced 2025-12-20 02:19:34 +05:30
22 lines
593 B
PHP
22 lines
593 B
PHP
<?php
|
|
require './core/connection.php';
|
|
require './core/query_functions.php';
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="">
|
|
<title>Contact Me - @neo_subhamoy</title>
|
|
<?php require 'assets/_integrate.php';?>
|
|
</head>
|
|
<body class="font-lexend bg-bg_primary text-accent_secondary">
|
|
<?php require 'assets/_header.php';?>
|
|
<div class="contactbox w-full px-4 lg:px-[4.5rem]">
|
|
|
|
</div>
|
|
<?php require 'assets/_footer.php';?>
|
|
</body>
|
|
</html>
|