format file
This commit is contained in:
parent
673fd9a930
commit
2fbd6cfbad
196
template.html
196
template.html
@ -1,88 +1,140 @@
|
|||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
|
||||||
<!-- favicons -->
|
<!-- favicons -->
|
||||||
<link type="image/png" sizes="16x16" rel="icon" href="static/favicon/icons8-console-material-sharp-16.png">
|
<link
|
||||||
<link type="image/png" sizes="32x32" rel="icon" href="static/favicon/icons8-console-material-sharp-32.png">
|
type="image/png"
|
||||||
<link type="image/png" sizes="96x96" rel="icon" href="static/favicon/icons8-console-material-sharp-96.png">
|
sizes="16x16"
|
||||||
|
rel="icon"
|
||||||
|
href="static/favicon/icons8-console-material-sharp-16.png"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
type="image/png"
|
||||||
|
sizes="32x32"
|
||||||
|
rel="icon"
|
||||||
|
href="static/favicon/icons8-console-material-sharp-32.png"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
type="image/png"
|
||||||
|
sizes="96x96"
|
||||||
|
rel="icon"
|
||||||
|
href="static/favicon/icons8-console-material-sharp-96.png"
|
||||||
|
/>
|
||||||
|
|
||||||
<!-- normalize css -->
|
<!-- normalize css -->
|
||||||
<link rel="stylesheet" type="text/css" href="static/normalize.css">
|
<link rel="stylesheet" type="text/css" href="static/normalize.css" />
|
||||||
|
|
||||||
<!-- simplecss -->
|
<!-- simplecss -->
|
||||||
<!-- <link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css"> -->
|
<!-- <link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css"> -->
|
||||||
|
|
||||||
<!-- sakura css -->
|
<!-- sakura css -->
|
||||||
<link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura.css" media="screen" type="text/css">
|
<link
|
||||||
<!-- uncomment for dark mode -->
|
rel="stylesheet"
|
||||||
<!-- <link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura-dark.css" media="screen and (prefers-color-scheme: dark)" /> -->
|
href="https://unpkg.com/sakura.css/css/sakura.css"
|
||||||
|
media="screen"
|
||||||
|
type="text/css"
|
||||||
|
/>
|
||||||
|
<!-- uncomment for dark mode -->
|
||||||
|
<!-- <link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura-dark.css" media="screen and (prefers-color-scheme: dark)" /> -->
|
||||||
|
|
||||||
<!-- custom css -->
|
<!-- custom css -->
|
||||||
<link rel="stylesheet" type="text/css" href="static/index.css">
|
<link rel="stylesheet" type="text/css" href="static/index.css" />
|
||||||
|
|
||||||
<!-- google fonts -->
|
<!-- google fonts -->
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap">
|
<link
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap">
|
rel="stylesheet"
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
|
||||||
|
/>
|
||||||
|
|
||||||
<!-- fontawesome icons -->
|
<!-- fontawesome icons -->
|
||||||
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> -->
|
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> -->
|
||||||
<!-- <script src="https://kit.fontawesome.com/89988d9d38.js" crossorigin="anonymous"></script> -->
|
<!-- <script src="https://kit.fontawesome.com/89988d9d38.js" crossorigin="anonymous"></script> -->
|
||||||
|
|
||||||
<!-- bootstrap icons -->
|
<!-- bootstrap icons -->
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css"
|
||||||
|
/>
|
||||||
|
|
||||||
<meta name="date" content="$date$">
|
<meta name="date" content="$date$" />
|
||||||
<title>$title$</title>
|
<title>$title$</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<h1>Aarya Bhatia</h1>
|
<h1>Aarya Bhatia</h1>
|
||||||
</header>
|
</header>
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<div style="padding: 10px; font-size: 2rem">
|
<div style="padding: 10px; font-size: 2rem">
|
||||||
<!-- <a href="mailto:aarya.bhatia1678@gmail.com"><i class="fa-lg fa-regular fa-envelope"></i></a> -->
|
<!-- <a href="mailto:aarya.bhatia1678@gmail.com"><i class="fa-lg fa-regular fa-envelope"></i></a> -->
|
||||||
<!-- -->
|
<!-- -->
|
||||||
<!-- <a href="https://www.github.com/aarya-bhatia/"><i class="fa-lg fa-regular fa-github"></i></a> -->
|
<!-- <a href="https://www.github.com/aarya-bhatia/"><i class="fa-lg fa-regular fa-github"></i></a> -->
|
||||||
<!-- -->
|
<!-- -->
|
||||||
<!-- <a href="https://www.linkedin.com/in/aarya-bhatia/"><i class="fa-lg fa-regular fa-linkedin"></i></a> -->
|
<!-- <a href="https://www.linkedin.com/in/aarya-bhatia/"><i class="fa-lg fa-regular fa-linkedin"></i></a> -->
|
||||||
<!-- -->
|
<!-- -->
|
||||||
<!-- <a href="https://www.instagram.com/aarya.bhatia/"><i class="fa-lg fa-regular fa-instagram"></i></a> -->
|
<!-- <a href="https://www.instagram.com/aarya.bhatia/"><i class="fa-lg fa-regular fa-instagram"></i></a> -->
|
||||||
<a href="mailto:aarya.bhatia1678@gmail.com"><i class="bi-envelope"></i></a>
|
<a href="mailto:aarya.bhatia1678@gmail.com"
|
||||||
|
><i class="bi-envelope"></i
|
||||||
<a href="https://www.github.com/aarya-bhatia/"><i class="bi-github"></i></a>
|
></a>
|
||||||
|
|
||||||
<a href="https://www.linkedin.com/in/aarya-bhatia/"><i class="bi-linkedin"></i></a>
|
<a href="https://www.github.com/aarya-bhatia/"
|
||||||
|
><i class="bi-github"></i
|
||||||
<a href="https://www.instagram.com/aarya.bhatia/"><i class="bi-instagram"></i></a>
|
></a>
|
||||||
</div>
|
|
||||||
|
<a href="https://www.linkedin.com/in/aarya-bhatia/"
|
||||||
|
><i class="bi-linkedin"></i
|
||||||
|
></a>
|
||||||
|
|
||||||
|
<a href="https://www.instagram.com/aarya.bhatia/"
|
||||||
|
><i class="bi-instagram"></i
|
||||||
|
></a>
|
||||||
|
</div>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
<!-- the following block of html is auto-generated... -->
|
<!-- the following block of html is auto-generated... -->
|
||||||
$body$
|
$body$
|
||||||
|
|
||||||
<h2>Contact Me</h2>
|
<h2>Contact Me</h2>
|
||||||
|
|
||||||
<form action="mailto:aaryab.alertservice@gmail.com" method="post" enctype="text/plain">
|
<form
|
||||||
<label for="name">Name</label>
|
action="mailto:aaryab.alertservice@gmail.com"
|
||||||
<input required type="text" name="name" id="name" placeholder="Name" />
|
method="post"
|
||||||
<br/>
|
enctype="text/plain"
|
||||||
<label for="email">Email</label>
|
>
|
||||||
<input required type="email" name="email" id="email" placeholder="Email" />
|
<label for="name">Name</label>
|
||||||
<br/>
|
<input
|
||||||
<label for="message">Message</label>
|
required
|
||||||
<textarea required name="message" id="message"></textarea>
|
type="text"
|
||||||
<br/>
|
name="name"
|
||||||
<button type="submit">Send</button>
|
id="name"
|
||||||
</form>
|
placeholder="Name"
|
||||||
</main>
|
/>
|
||||||
|
<br />
|
||||||
|
<label for="email">Email</label>
|
||||||
|
<input
|
||||||
|
required
|
||||||
|
type="email"
|
||||||
|
name="email"
|
||||||
|
id="email"
|
||||||
|
placeholder="Email"
|
||||||
|
/>
|
||||||
|
<br />
|
||||||
|
<label for="message">Message</label>
|
||||||
|
<textarea required name="message" id="message"></textarea>
|
||||||
|
<br />
|
||||||
|
<button type="submit">Send</button>
|
||||||
|
</form>
|
||||||
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer></footer>
|
||||||
</footer>
|
</body>
|
||||||
</body>
|
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user