<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Fikri m Syhdan</title>
    <description>The latest articles on DEV Community by Fikri m Syhdan (@fikri_msyhdan_7dd036d0e8).</description>
    <link>https://dev.to/fikri_msyhdan_7dd036d0e8</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4117919%2F745fedf7-feab-404c-a368-8069d69ab004.png</url>
      <title>DEV Community: Fikri m Syhdan</title>
      <link>https://dev.to/fikri_msyhdan_7dd036d0e8</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/fikri_msyhdan_7dd036d0e8"/>
    <language>en</language>
    <item>
      <title>Tencent EdgeOne Makers: Deploying a Static Web Project with HTML, CSS, and JavaScript</title>
      <dc:creator>Fikri m Syhdan</dc:creator>
      <pubDate>Wed, 09 Sep 2026 16:52:10 +0000</pubDate>
      <link>https://dev.to/fikri_msyhdan_7dd036d0e8/tencent-edgeone-makers-deploying-a-static-web-project-with-html-css-and-javascript-1ag4</link>
      <guid>https://dev.to/fikri_msyhdan_7dd036d0e8/tencent-edgeone-makers-deploying-a-static-web-project-with-html-css-and-javascript-1ag4</guid>
      <description>&lt;p&gt;As part of the DevHandal 2026 Batch 2 challenge, I explored Tencent EdgeOne Makers to learn how a simple web project can be deployed and made accessible online.&lt;/p&gt;

&lt;p&gt;For this project, I created a simple landing page called EdgeOne Makers | DevHandal 2026. The website was built using basic HTML, CSS, and JavaScript, without using a web framework.&lt;/p&gt;

&lt;p&gt;My main goal was to understand the deployment process from creating a project locally to publishing it online through Tencent EdgeOne Makers.&lt;br&gt;
Building the Project&lt;/p&gt;

&lt;p&gt;I started by creating a simple landing page with three main files:&lt;/p&gt;

&lt;p&gt;edgeone-devhandal/&lt;br&gt;
├── index.html&lt;br&gt;
├── style.css&lt;br&gt;
└── script.js&lt;/p&gt;

&lt;p&gt;The index.html file contains the main structure of the website. I created a hero section, navigation, feature cards, and a learning journey section.The design focuses on a simple dark interface that introduces the project and my experience while learning about EdgeOne.&lt;/p&gt;

&lt;p&gt;For the styling, I used CSS in style.css. The website was also designed to remain usable on smaller screens.&lt;/p&gt;

&lt;p&gt;I also added a small JavaScript interaction. The page has a Test Interaction button that displays a message when clicked. This allowed me to verify that the JavaScript functionality was working correctly.&lt;/p&gt;

&lt;p&gt;Before deploying the website, I tested it locally in my browser to make sure the HTML, CSS, and JavaScript worked properly.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Using GitHub&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;After finishing the project, I created a GitHub repository called edgeone-devhandal.&lt;/p&gt;

&lt;p&gt;I then initialized Git in my project directory, added the project files, created the first commit, and pushed the project to the main branch.&lt;/p&gt;

&lt;p&gt;Using GitHub made it possible to connect my source code directly to Tencent EdgeOne Makers.&lt;/p&gt;

&lt;p&gt;The repository contains the complete source code for the website:&lt;br&gt;
GitHub Repository:&lt;br&gt;
&lt;a href="https://github.com/lurrahh2-maker/edgeone-devhandal" rel="noopener noreferrer"&gt;https://github.com/lurrahh2-maker/edgeone-devhandal&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Connecting GitHub to Tencent EdgeOne Makers&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;After the repository was ready, I connected it to Tencent EdgeOne Makers.&lt;/p&gt;

&lt;p&gt;I selected the edgeone-devhandal repository and used the main branch as the production branch.&lt;/p&gt;

&lt;p&gt;Because this project is a static website using only HTML, CSS, and JavaScript, I selected Other as the preset framework.&lt;/p&gt;

&lt;p&gt;I did not need a build command or an install command because the project does not require a framework or package installation process before deployment.&lt;/p&gt;

&lt;p&gt;This made the configuration relatively simple.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Deploying the Website&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;After completing the project configuration, I started the deployment process.&lt;/p&gt;

&lt;p&gt;The deployment was connected to my GitHub repository, which means the repository can be used as the source for future deployments when changes are pushed to the production branch.&lt;/p&gt;

&lt;p&gt;The deployment completed successfully, and the project received a public EdgeOne URL.&lt;/p&gt;

&lt;p&gt;The deployed website can be accessed here:&lt;/p&gt;

&lt;p&gt;Live Website:&lt;br&gt;
&lt;a href="https://edgeone-devhandal-dpbqqet1nm3o.edgeone.dev" rel="noopener noreferrer"&gt;https://edgeone-devhandal-dpbqqet1nm3o.edgeone.dev&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Seeing the website successfully accessible through a public URL was a useful part of the learning process because I could directly see the result of the deployment workflow.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;What I Learned&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This project helped me understand the basic workflow of deploying a web project using GitHub and Tencent EdgeOne Makers.&lt;/p&gt;

&lt;p&gt;Previously, I mostly thought of deployment simply as making a website available online. Through this project, I got a better understanding of how the different parts are connected: local source code, Git, GitHub, project configuration, and the deployment platform.&lt;/p&gt;

&lt;p&gt;I also learned that a simple static website does not necessarily need a complicated build process. Since my project only uses HTML, CSS, and JavaScript, it can be deployed with a relatively straightforward configuration.&lt;/p&gt;

&lt;p&gt;Although this project is still simple, it gives me a foundation for experimenting with more advanced projects and EdgeOne features in the future.&lt;br&gt;
Conclusion&lt;/p&gt;

&lt;p&gt;My experience with Tencent EdgeOne Makers gave me a practical introduction to the web deployment process.&lt;/p&gt;

&lt;p&gt;Starting from a simple HTML, CSS, and JavaScript project, I was able to push the source code to GitHub, connect the repository to Tencent EdgeOne Makers, configure the project, and successfully deploy the website.&lt;/p&gt;

&lt;p&gt;For my next project, I would like to explore more Tencent EdgeOne capabilities and see how they can be applied to larger and more complex web applications.&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>frontend</category>
      <category>tutorial</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
