personal-info

contacts


/ personal-info / bio

My name is Shakil Ilham.I am a web developer and UI/UX designer from Sri Lanka.With over five years of experience in web development,I have gained extensive knowledge and expertise increating high-quality websites and user interfaces that arenot only visually appealing but also functional and efficient.

My passion for web development and design goes beyond my professional career, as I also enjoypursuing photography, traveling, and gaming in my free time.These hobbies inspire my creativity and help me stay up-to-date with the latest trends in design and technology.I take pride in my ability to listen to my clients' needs anddeliver tailored solutions that exceed their expectations.

I am constantly striving to learn and grow as a web developer andI am always open to new challenges and opportunities.If you are looking for a reliable and experienced web developer or UI/UX designer, feel free to reach out to me. Let's work together to bring your ideas to life and create something truly exceptional.

//Code snippet showcase:

silham

@silham

Created 2 months ago

details

 async function getData() { try {
  const response = await fetch('http://jsonapis.com/');
  const data = await response.json();
  console.log(data); } catch (error) {
  console.error(error);
 }}getData();
silham

@silham

Created 5 months ago

details

 function() => {const t=document.createElement('link');
 if (t&&t.supports&&t.supports('modulepreload'))return;
 for (const l of document.querySelectorAll(
  'link[rel='modulepreload']'))r(l);
 new MutationObserver(l=>{for(const o of l)
silham

@silham

Created a month ago

details

 $name = 'David'; $limit = 1;
 $stmt = $mysqli->prepare('SELECT age,
   address FROM students WHERE name = ? LIMIT ?');
 $stmt->bind_param('si', $name, $limit);
 $stmt->execute();
 $stmt->bind_result($age, address);