-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtabels.html
More file actions
38 lines (38 loc) · 1.82 KB
/
Copy pathtabels.html
File metadata and controls
38 lines (38 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!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>advices for developers</title>
</head>
<body>
<table>
<tr>
<th>Topic</th>
<th>Name of website</th>
<th>URL</th>
</tr>
<tr>
<td>7 tips to become a better web developer </td>
<td>freelancer </td>
<td><a href="https://www.freelancer.com/articles/web-development/tips-for-web-development">here the website</a></td>
</tr>
<tr>
<td>Useful tips to help you create good habits as a web developer</td>
<td>free code camp</td>
<td><a href="https://www.freecodecamp.org/news/useful-tips-to-help-you-create-good-habits-as-a-web-developer-7c1b7b5c0bcb/">here the website</a></td>
</tr>
<tr>
<td>5 Tips for Improving Your Web Development Skills</td>
<td>envato blog</td>
<td><a href="https://envato.com/blog/5-tips-for-improving-your-web-development-skills/">here the website</a></td>
</tr>
</table>
<h3>difference between input type button and submit</h3>
<p>input type="button" / buttons will not submit a form - they don't do anything by default. They're generally used in conjunction with JavaScript as part of an AJAX application.
....input type="submit" buttons will submit the form they are in when the user clicks on them, unless you specify otherwise with JavaScript.
the BUTTON element may have content. For example, a BUTTON element that contains an image functions like and may resemble an INPUT element whose type is set to “image”, but the BUTTON element type allows content.
</p>
</body>
</html>