INPUT FIELD WITH URL USING ATTRIBUTES
Run
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>
</head>
<body>
    <h2>Url input field</h2>
	<label for="path">Enter the URL of your project</label>
	<input type="url" id="path" name="path" pattern="https://.*" size="50" placeholder="Enter url">
	<input type="submit">
</body>
</html>