Untitled
unknown
plain_text
3 years ago
7.9 kB
5
Indexable
<!DOCTYPE html> <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></title> </head> <body> <!-- header --> <header> <center id="top"> <h1> <ins>korea Software HRD Center</ins> </h1> <em>The Best Software Expert Training Center in Cambodia</em ><br /><br /> <a href="./about.html" target="_blank">About us</a> <a href="./contact.html" target="_new">Contact us</a ><br /><br /> <b>We provide the best opportunities for IT major student to become global SW expert with the highest quality training program.</b> <br /> <b> All courses are free of charge. Furthermore, we provide a bridge for graduate students to the global SW job. Please join our center for a bright future! </b> </center> </header> <hr /> <!-- end header --> <section> <h3> <ins>WHAT OUR TRAINING INCLUDE:</ins> </h3> <ol> <b> <i> <li> <h3>Java programing</h3> </li> </i> </b> <ul> <li>Learn OOP Concept</li> <li>J2SE(JDBC)J2EE(Servlet, JSP)</li> <li>MVC pattern</li> </ul> <b> <i> <li> <h3>Web Development</h3> </li> </i> </b> Learn front-end web technologies of: <br /><br /> <ul> <li>HTML, CSS, JavaScript</li> <li>Bootstrap 5, TailwindCSS</li> <li>ReactJS</li> </ul> <b> <i> <li> <h3>Database Management</h3> </li> </i> </b> Learn database concept and perform several projects with popular database management system such as: <br /><br /> <ul> <li>Oracle</li> <li>PostgreSQL</li> <li>MySQL</li> </ul> <b> <i> <li> <h3>Web Design</h3> </li> </i> </b> Learn the lastest design trend and perform web and mobile design project by using: <br /><br /> <ul> <li>PhotoShop</li> <li>Illustrator</li> </ul> <b> <i> <li> <h3>New Technology</h3> </li> </i> </b> There are other up-to-date SW technologies to learn. </ol> </section> <hr /> <!-- students list --> <section> <ins> <b> <h3>STUDENTS LIST</h3> </b> </ins> <table border="1" width="100%"> <tr> <th>No</th> <th colspan="2">Full Name</th> <th>Gender</th> <th>University</th> <th>Date of Birth</th> </tr> <tr align="center"> <td>001</td> <td>John</td> <td>Doe</td> <td>Male</td> <td>AEU</td> <td>01/07/2002</td> </tr> <tr align="center"> <td>002</td> <td>John</td> <td>Doe</td> <td>Male</td> <td>AEU</td> <td>01/07/2002</td> </tr> <tr align="center"> <td>003</td> <td>John</td> <td>Doe</td> <td>Male</td> <td>AEU</td> <td>01/07/2002</td> </tr> </table> <br /> </section> <!-- form --> <section> <form action=""> <fieldset> <legend> <ins> <b> <h3>PERSONALIA:</h3> </b> </ins> </legend> <!-- first name --> <label for="fname">First name:</label> <input type="text" id="fname" name="fname" /><br /><br /> <!-- last name --> <label for="lname">Last name:</label> <input type="text" id="lname" name="lname" /><br /><br /> <!-- gender --> <label for="gender">Gender:</label> <input type="radio" id="gender" name="gender" /> <label for="gender">Male</label> <input type="radio" id="gender" name="gender" /> <label for="gender">Female</label> <br /><br /> <!-- email --> <label for="email">Email:</label> <input type="email" id="email" name="email" /><br /><br /> <label for="password">Password:</label> <input type="password" id="password" name="password" /><br /><br /> <!-- date of birth --> <label for="birthdate">Birthdate:</label> <input type="date" id="birthdate" name="birthdate" /><br /><br /> <!-- hobbies --> <label>Hobbies:</label> <input type="checkbox" name="football" /> <label for="football">Football</label> <input type="checkbox" name="soccer" /> <label for="soccer">Soccer</label> <input type="checkbox" name="basketball" /> <label for="basketball">Basketball</label> <input type="checkbox" name="tennis" /> <label for="tennis">Tennis</label> <br /><br /> <!-- profile --> <label for="profile">Profile:</label> <input type="file" id="profile" name="profile" /><br /><br /> <!-- subject --> <label for="subject">Choose any subject:</label> <select name="subject" id="subject"> <optgroup label="Technology"> <option value="web">Web Developer</option> <option value="design">Design</option> </optgroup> <optgroup label="Social"> <option value="facebook">Facebook</option> <option value="youtube">Youtube</option> </optgroup> </select> <br /><br /> <label for="">Extra Activities</label> <input type="text" list="activities" /> <datalist id="activities"> <option value="Football"></option> <option value="Facebook"></option> <option value="Youtube"></option> </datalist> <br /><br /> <textarea name="" id="" cols="70" rows="10"></textarea> <br /><br /> <!-- submit --> <input type="submit" value="Submit" /> </fieldset> </form> </section> <hr /> <!-- end form --> <!-- other input type --> <section> <ins> <b> <h3>OTHER INPUT TYPES</h3> </b> </ins> <br /> <div> <input type="button" value="Button" /> <input type="datetime-local" /> <input type="month" /> <input type="number" /> <input type="range" /> <input type="search" /> <input type="week" /> <input type="time" /> </div> <br /> <div> <form oninput="res.value = parseFloat(a.value) + parseFloat(b.value)"> <input type="number" name="a" value="0" /> + <input type="number" name="b" value="0" /> = <output name="res">0</output> </form> </div> <br /> <div> <a href="#top"> <img src="../img/photo_2023-01-07_13-50-30.jpg" alt="no internet" /> </a> </div> </section> <!-- end other input type --> <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> </body> </html>
Editor is loading...