Tools:
Documentatie:
Exercitii de antrenament:
Replicati urmatoarele imagini folosing HTML
<html>
<head>
</head>
<body>
<h1>Student registratios</h1>
<form>
<label for="firstNAme">First name:</label><br>
<input type="text" id="firstNAme" name="firstNAme" placeholder="Tuxy"><br>
<label for="lastName">Last name:</label><br>
<input type="text" id="lastName" name="lastName" placeholder="Pinguinescu"><br>
<label for="age">Age:</label>
<input type="number" id="age" name="age" min="18" max="27"><br>
<label for="phone">Enter a phone number:</label><br>
<input type="tel" id="phone" name="phone" placeholder="0755 555 555" pattern="[0-9]{4} [0-9]{3} [0-9]{3}"><br>
<label for="Course">Choose a course:</label>
<select id="courses" name="courses">
<option value="TW">TW</option>
<option value="BD">BD</option>
<option value="SGBD">SGBD</option>
<option value="IP">IP</option>
</select><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
Puteti adauga urmatoare bucata de CSS la inceputul pagini
<style>
table,
th,
td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
<html>
<head>
<style>
table,
th,
td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
</head>
<body>
<table>
<tr>
<th colspan="5">Note proiecte</th>
</tr>
<tr>
<th > Dificultate </th>
<th> Proiect </th>
<th> Echipa </th>
<th> Studenti </th>
<th> Nota </th>
</tr>
<tr>
<th rowspan="5">M</th>
<td rowspan="3">Awesome AI</td>
<td rowspan="3">Tuxy</td>
<td>Tuxy</td>
<td rowspan="3">9</td>
</tr>
<tr>
<td>Pinguinescu</td>
</tr>
<tr>
<td>Stefan</td>
</tr>
<tr>
<td rowspan="2">Drone Managment</td>
<td rowspan="2">Tuxy</td>
<td>Tuxy</td>
<td rowspan="2">7</td>
</tr>
<tr>
<td>Pinguinescu</td>
</tr>
</table>
</body>
</html>