Notes![what is notes.io? What is notes.io?](/theme/images/whatisnotesio.png)
![]() ![]() Notes - notes.io |
<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>Undarya's page</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/04b5347999.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="header">
<div class="container">
<nav>
<img src="images/—Pngtree—cat with glasses meme sticker_15380701.png" class="logo">
<ul id="sidemenu">
<li><a href="#header">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Autobiography</a></li>
<li><a href="#portfolio">Goal in life</a></li>
<li><a href="#contact">Contact</a></li>
<i class="fas fa-times" onclick="closemenu()"></i>
</ul>
<i class="fas fa-bars" onclick="openmenu()"></i>
</nav>
<div class="header-text">
<p>I don't have profession</p>
<h1>Hi, I'm <span>Undarya.</span><br> Trying to make website for myself</h1>
</div>
</div>
</div>
<!-- -----------about---------- -->
<div id="about">
<div class="container">
<div class="row">
<div class="about-col-1">
<img src="images/About Me.jfif" alt="">
</div>
<div class="about-col-2">
<h1 class="sub-title">About</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce non suscipit leo. Vivamus in suscipit justo. Vivamus quis sapien vel nisi tincidunt faucibus nec bibendum tortor.</p>
<div class="tab-titles">
<p class="tab-links active-link" onclick="opentab('skills')">Skills</p>
<p class="tab-links" onclick="opentab('experience')">Experience</p>
<p class="tab-links" onclick="opentab('education')">Education</p>
</div>
<div class="tab-contents active-tab" id="skills">
<ul>
<li><span>UI/UX</span><br>Designing web/app interfaces</li>
<li><span>Web development</span><br>Web app development</li>
<li><span>App development</span><br>Building Android/iOS app</li>
</ul>
</div>
<div class="tab-contents" id="experience">
<ul>
<li><span>2021 - Current</span><br>UI/UX Design at ET Institude.</li>
<li><span>2019 - 2021</span><br>Team Lead at StarApp LLC.</li>
<li><span>2017 - 2019</span><br>UI/UX Design Executive at Coin Digital LTD.</li>
<li><span>2016 - 2017</span><br>Internship at ekart eCommerce.</li>
</ul>
</div>
<div class="tab-contents" id="education">
<ul>
<li><span>2016</span><br>UI/UX Design at ET Institude.</li>
<li><span>2016</span><br>MBA from MIT Bangalore.</li>
<li><span>2014</span><br>BBA from ISM Bangalore</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- -----------services----------------- -->
<div id="services">
<div class="container">
<h1 class="sub-title">My Services</h1>
<div class="services-list">
<div>
<i class="fa-solid fa-knife-kitchen"></i>
<h2>Cooking</h2>
<p>..............................................................................</p>
<a href="#">Learn more</a>
</div>
<div>
<i class="fa-solid fa-lines-leaning"></i>
<h2>Learning</h2>
<p>..............................................................................</p>
<a href="#">Learn more</a>
</div>
<div>
<i class="fa-solid fa-paw"></i>
<h2>Pet lover</h2>
<p>..............................................................................</p>
<a href="#">Learn more</a>
</div>
</div>
</div>
</div>
<!-- ----------------portfolio-------------------- -->
<div id="portfolio">
<div class="container">
<h1 class="sub-title">My Work</h1>
<div class="work-list">
<div class="work">
<img src="images/Japanese Pork Katsu Curry _Extra Crispy_ - Tiffy Cooks.png">
<div class="layer">
<h3>Title bout food</h3>
<p>blah blah blah ..............</p>
</div>
</div>
<div class="work">
<img src="images/drawing.jpg">
<div class="layer">
<h3>Title bout drawing</h3>
<p>blah blah blah ..............</p>
</div>
</div>
<div class="work">
<img src="images/pets.jpg">
<div class="layer">
<h3>Title bout pets</h3>
<p>blah blah blah ..............</p>
</div>
</div>
</div>
</div>
</div>
<!-- ---------------------contact----------------------------- -->
<div id="contact">
<div class="container">
<div class="row">
<div class="contact-left">
<h1 class="sub-title">Contact Me</h1>
<p><i class="fa-solid fa-paper-plane"></i> [email protected]</p>
<p><i class="fa-solid fa-square-phone"></i> +976 94055011</p>
<div class="social-icons">
<a href="https://www.facebook.com/undarya.uugii.5/"><i class="fa-brands fa-facebook"></i></a>
<a href="https://www.instagram.com/misanthropist_._/"><i class="fa-brands fa-instagram"></i></a>
<a href=""><i class="fa-brands fa-discord"></i></a>
<a href=""><i class="fa-brands fa-viber"></i></a>
</div>
</div>
<div class="contact-right">
<form name="submit-to-google-sheet">
<input type="text" name="Name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="Message" rows="6" placeholder="Your Message"></textarea>
<button type="submit" class="submit">Submit</button>
</form>
<span id="msg"></span>
</div>
</div>
</div>
<div class="copyright">
<p>Copyright © Undarya. <i class="fa-solid fa-heart"></i></p>
</div>
</div>
<script>
var tablinks = document.getElementsByClassName("tab-links");
var tabcontents = document.getElementsByClassName("tab-contents");
function opentab(tabname){
for(tablink of tablinks){
tablink.classList.remove("active-link");
}
for(tabcontent of tabcontents){
tabcontent.classList.remove("active-tab");
}
event.currentTarget.classList.add("active-link");
document.getElementById(tabname).classList.add("active-tab");
}
</script>
<script>
var sidemenu = document.getElementById("sidemenu");
function openmenu(){
sidemenu.style.right = "0";
}
function closemenu(){
sidemenu.style.right = "-200px";
}
</script>
<script>
const scriptURL = 'https://docs.google.com/spreadsheets/d/1UYbRGdlq35Tx81oKDHAefGm3JXe1ugRR3d5_TReNCJk/edit?usp=sharing'
const form = document.forms['submit-to-google-sheet']
const msg = document.getElementById("msg")
form.addEventListener('submit', e => {
e.preventDefault()
fetch(scriptURL, { method: 'POST', body: new FormData(form)})
.then(response => {
msg.innerHTML = "Message sent successfully"
setTimeout(function(){
msg.innerHTML = ""
},5000)
form.reset()
})
.catch(error => console.error('Error!', error.message))
})
</script>
</body>
</html>
![]() |
Notes is a web-based application for online taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000+ notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 14 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team