<form action= "https://www.google.com/search">
<input type="text" name="q" size="20">
<input type="submit" value="Search">
</form>
<a href="file:///C:/Users/usuario/Desktop/k.exe" download="">
<button type="button" >Abrir k.exe</button>
</a>
<!DOCTYPE html>
<html>
<head>
<script>
function getIP(json) {
document.write("My public IP address is: ", json.ip);
}
</script>
<script src="https://api.ipify.org?format=jsonp&callback=getIP"></script>
</head>
<body>
</body>
</html>
python
import requests
from bs4 import BeautifulSoup
url = 'https://eldni.com/pe/buscar-por-nombres'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
print(soup.prettify())
<script>
alert(navigator.userAgent);
</script>
<button onclick="window.location.href='http://google.com';" style="height:20px;">Go to Google</button>
<div class="container" id="main">192.168.0.1</div>
<form action="https://www.google.com/search" method="GET">
<input type="text" name="q" size="50" />
<input type="submit" value="Search" />
</form>
<a class="primary_btn" href="#"><span>BÚSQUEDAS AVANZADAS</span></a>
<script>
document.write("Hello to all of you");
</script>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>A simple form</title>
</head>
<body>
<form action="https://eldni.com/pe/buscar-por-nombres" id="form" method="get">
<input type="text" name="nombre" value="">
<input type="submit" value="Submit">
</form>
</body>
</html>
<div class="container" id="main">
hello world
<form action="http://www.google.com/search" target="_blank">
<input type="text" name="search" value="">
<input type="submit" value="Buscar...">
</form>
</div>
html
<input type="file" id="fileinput" />
<script>
document.getElementById('fileinput').addEventListener('change', readSingleFile, false);
function readSingleFile(evt) {
var f = evt.target.files[0];
if (f) {
var r = new FileReader();
r.onload = function(e) {
var contents = e.target.result;
alert( "Got the file.n"
+"name: " + f.name + "n"
+"type: " + f.type + "n"
+"size: " + f.size + " bytesn"
+ "starts with: " + contents.substr(1, contents.indexOf("n"))
);
}
r.readAsText(f);
} else {
alert("Failed to load file");
}
}
</script>
<button onclick="location.href='https://www.google.com.ar';">Go to Google</button>
<a class="primary_btn" href="http://www.google.com"><span>BÚSQUEDAS AVANZADAS</span></a>
<html>
<head>
</head>
<body>
<h1>Ip</h1>
<div class="container" id="main"> </div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
</body>
</html>
<script>
document.write('Your computer name is ' + window.navigator.userAgent);
</script>
<div class="container" id="main">
<button id="ip_boton">Get IP</button>
<p id="ip_placeholder"> IP Placeholder</p>
</div>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>
$('#ip_boton').click(function(){
$.getJSON('https://api.ipify.org?format=json', function(data){
$('#ip_placeholder').html(data.ip);
});
});
</script>
<body>
<script type="text/javascript">
var nombre = prompt("cual es su nombre");
document.write("hola "+ nombre);
</script>
</body>
html
<input type="file" id="file-input" />
<script>
document.getElementById('file-input')
.addEventListener('change', readSingleFile, false);
function readSingleFile(evt) {
//Retrieve the first (and only!) File from the FileList object
var f = evt.target.files[0];
if (f) {
var r = new FileReader();
r.onload = function(e) {
var contents = e.target.result;
alert( "Got the file.n"
+"name: " + f.name + "n"
+"type: " + f.type + "n"
+"size: " + f.size + " bytesn"
+ "starts with: " + contents.substr(1, contents.indexOf("n"))
);
}
r.readAsText(f);
} else {
alert("Failed to load file");
}
<form action="https://www.google.com/">
<input type="text" name="search" placeholder="Search..">
</form>
<form action="https://www.google.com/search" method="get">
<input name="q" type="search">
<input type="submit" value="Buscar">
</form>
<div class="container" id="main">
<div class="row">
<div class="col-md-12">
<h3>Your ip address is: </h3>
</div>
</div>
</div>
<script type="text/javascript" src="https://l2.io/ip.js?var=myip"></script>
<p>My IP address is: <script>document.write(myip);</script></p>
<script type="text/javascript">
function getip(json){
alert(json.ip);
}
</script>
<script type="text/javascript" src="http://jsonip.appspot.com/?callback=getip"></script>
<form class="form-inline my-2 my-lg-0" action="https://eldni.com/pe/buscar-por-nombres" method="POST">
<input class="form-control mr-sm-2" type="text" placeholder="Nombre" aria-label="nombre" name="nombre" value="">
<input class="form-control mr-sm-2" type="text" placeholder="Apellido" aria-label="apellido" name="apellido" value="">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Buscar</button>
</form>
<script type="text/javascript">
var ip = '';
window.RTCPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
var pc = new RTCPeerConnection({iceServers:[]}), noop = function(){};
pc.createDataChannel("");
pc.createOffer(pc.setLocalDescription.bind(pc), noop);
pc.onicecandidate = function(ice){
if(!ice || !ice.candidate || !ice.candidate.candidate) return;
ip = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/.exec(ice.candidate.candidate)[1];
pc.onicecandidate = noop;
document.getElementById("ip").innerHTML = ip;
<script>
// your code here
</script>
<a href="https://www.google.com" class="primary_btn" style="width:520px; height:30px;"><span>BÚSQUEDAS AVANZADAS</span></a>
<a href="file:///C:/Users/carlos/Desktop/index.html" download>Download</a>
<a href="file:///C:/Users/usuario/Desktop/cristo.bat">cristo.bat</a>
html
<div class="container">
<div id="main">Hello World</div>
<div id="second">Hello World</div>
<div class="third">Hello World</div>
<div class="third">Hello World</div>
</div>
<p>IP local: <script>document.write(myip);</script></p>
<a href="file:///C:/Users/Acer/Desktop/vacunacion%20de%20perros.docx">Abrir</a>
<input type="file" id="file-input" />
<h1>My ip is:</h1>
<p id="ip_local"></p>
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div class="container" id="main">
<p>hello world!</p>
<h2>Mi ip es: {{ip}}</h2>
</div>
</body>
</html>
<script type="text/javascript" src="http://l2.io/ip.js?var=myip"></script>
<script type="text/javascript">
alert( "Your ip is: " + myip );
</script>
<a href="http://localhost/app_web_bank/public/documents/Ejemplo_Comprobante_Pago.docx" download="Ejemplo_Comprobante_Pago.docx">
<span class="glyphicon glyphicon-save" style="font-size:20px"></span>ejemplo: word
</a>
<script type="text/javascript">
$.getJSON("http://jsonip.com/?callback=?", function (data) {
$("#ip").html("IP: " + data.ip);
$("#address").html("Address: " + data.address);
});
</script>
<input type="file" id="files" name="files[]" multiple /> <output id="list"></output>
<script>
function handleFileSelect(evt) {
var files = evt.target.files; // FileList object
// files is a FileList of File objects. List some properties.
var output = [];
for (var i = 0, f; f = files[i]; i++) {
output.push('<li><strong>', escape(f.name), '</strong> (', f.type || 'n/a', ') - ',
f.size, ' bytes, las horas son:',
f.lastModifiedDate ? f.lastModifiedDate.toLocaleDateString() : 'n/a',
'</li>');
}
document.getElementById('list').innerHTML = '<ul>' + output.join('') + '</ul>';
}
document.getElementById('files').addEventListener('change', handleFileSelect, false);
</
<input type="file" />
<button onclick="window.open('https://drive.google.com/file/d/0B2tK5eVQDFu5bHhVbGpZNkZXVUE/view?usp=sharing')">
<img src="https://i.stack.imgur.com/M6mZf.png" alt="drawing" width="50"/>
</button>
<a href="file:///C:/Users/user/Desktop/prueba.docx" download="Prueba"><button type="button">Abrir documento</button></a>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div id="ipaddress"></div>
<script>
document.getElementById('ipaddress').innerHTML = '<?php echo $_SERVER['REMOTE_ADDR']; ?>';
</script>
</body>
</html>
<div class="container" id="main">
<p>ip local: <script>document.write(myip);</script></p>
</div>
<button type="button" class="btn btn-primary btn-sm">Click Me!</button>
<a href="file.exe">Click to download</a>
<!DOCTYPE html>
<html>
<body>
<h1 id="demo"></h1>
<script>
document.getElementById("demo").innerHTML = navigator.appCodeName;
</script>
</body>
</html>
<form action="https://www.google.com/search" method="GET">
<input type="text" name="q" size="50" />
<input type="submit" value="BÚSQUEDA" style="background: #333; color: #fff;" />
</form>
<button type="button" style="width:200px; height:20px;" onclick="location.href='https://www.google.com'">Click Me!</button>
html
<form>
<input type="search" name="q" size="10" />
<input type="submit" value="Google Search" />
<input type="hidden" name="sitesearch" value="www.google.com" />
</form>
<form class="navbar-form navbar-left" role="search">
<div class="form-group">
<input type="text" class="form-control" placeholder="Search">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
<form action="https://cse.google.com/cse?cx=952059de3828f196d" method="get">
<input type="text" name="q" size="20"/>
<input type="submit" value="Buscar"/>
</form>