Skip to content

Saiddproject/Lab3web

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Nama : Muhammad Said Abimanyu Nim : 312410145

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HTML Lanjutan</title>
</head>
<body>
     <header>
         <h1>Membuat List</h1>
     </header>
     <section id="order list">
         <h2>Ordered List</h2>
         <ol>
             <li>Pemograman Web</li>
             <li>Sistem Informasi</li>
             <li>Basis Data</li>
          </li>
         </ol>
     </section>
     <section id="unorder-list">
         <h2>Unordered List</h2>
             <ul type="square">
                 <li>Jaringan Komputer</li>
                 <li>Struktur Data</li>
                 <li>Algoritma &amp; Pemrograman</li>
            </ul>
        </section>
     </body>
</html>
1
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HTML Lanjutan</title>
</head>
<body>
     <section id="unorder-list">
         <h2>Description List</h2>
 <dl>
         <dt>Fakultas Teknik</dt>
         <dd>Teknik Industri</dd>
         <dd>Teknik Informatika</dd>
         <dd>Teknik Lingkungan</dd>
         <dt>Fakultas Ekonomi dan Bisnis</dt>
         <dd>Akuntansi</dd>
         <dd>Manajemen</dd>
         <dd>Bisnis Digital</dd>
     </dl>
 </section>
</body>
</html>
2
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HTML Lanjutan</title>
</head>
<body>
    <header>
        <h1>Membuat table</h1>
    </header>
     <table border="1" cellpadding="4" cellspacing="0">
 <thead>
     <tr>
         <th>No.</th>
         <th>Fakultas</th>
         <th>Program Studi</th>
     </tr>
 </thead>
 <tbody>
     <tr>
         <td>1.</td>
         <td>Teknik</td>
         <td>Teknik Informatika</td>
     </tr>
     <tr>
         <td>2.</td>
         <td>Teknik</td>
         <td>Teknik Industri</td>
     </tr>
     <tr>
         <td>3.</td>
         <td>Teknik</td>
         <td>Teknik Lingkungan</td>
     </tr>
</tbody>
</table>
</body>
</html>
3
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HTML Lanjutan</title>
</head>
<body>
    <table border="1" cellpadding="6" cellspacing="0"> 
     <thead> 
     <tr> 
         <th>No.</th> 
         <th>Fakultas</th> 
         <th>Program Studi</th> 
     </tr> 
 </thead> 
 <tbody> 
     <tr> 
         <td>1.</td> 
         <td rowspan="3">Teknik</td> 
         <td>Teknik Informatika</td> 
 </tr> 
     <tr> 
     <td>2.</td> 
     <td>Teknik Industri</td> 
    </tr> 
 <tr> 
     <td>3.</td> 
     <td>Teknik Lingkungan</td> 
 </tr> 
</tbody> 
</table>
</body>
</html>
4
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HTML Lanjutan</title>
    <style> 
        form p > label { 
            display: inline-block; 
            width: 100px; 
        } 

        form input[type="text"], 
        form textarea { 
            border: 1px solid #197a43; 
        } 

        form input[type="submit"] { 
            border: 1px solid #197a43; 
            background-color: #197a43; 
            color: #ffffff; 
            font-weight: bold; 
            padding: 5px 15px; 
            cursor: pointer;
        } 

        form input[type="submit"]:hover {
            background-color: #145f34;
        }
    </style> 
</head>
<body>
    <header>
        <h1>Membuat Form</h1>
    </header>

    <form action="proses.php" method="post"> 
        <fieldset> 
            <legend>Data Pelanggan</legend> 

            <p> 
                <label for="nama">Nama</label> 
                <input type="text" id="nama" name="nama"> 
            </p> 

            <p> 
                <label for="alamat">Alamat</label> 
                <textarea id="alamat" name="alamat" cols="20" rows="3"></textarea> 
            </p> 

            <p> 
                <label>Jenis Kelamin</label> 
                <input id="jk_l" type="radio" name="kelamin" value="L">
                <label for="jk_l">Laki-laki</label>  

                <input id="jk_p" type="radio" name="kelamin" value="P">
                <label for="jk_p">Perempuan</label> 
            </p> 

            <p>
                <input type="submit" value="Login">
            </p> 
        </fieldset> 
    </form>
</body>
</html>
5

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published