PRojekt

asdasdasd

PRojekt

Witaj na mojej stronie

 

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<link rel="stylesheet" href="/style.css">

<title>Szkoła ponadgimnazjlana</title>

</head>

<body>

<div id="baner">

<h1>Projekt strony internetowej szkoły

ponadgimnazjalnej</h1>

</div>

<div id="lewy" >

 

<h3>Do pobrania</h3>

<ul type="circle">

<li>zapytania SQL</li>

<li>baza danych</li>

<hr color="#ffd87e" />

<h3>Wyznaczenie najwyższej średniej</h3>

<ul type="circle">

<li>Polak: <input type="text" id="sr1" /></li>

<li>Nowak: <input type="text" id="sr2" /></li>

<li>Rysik: <input type="text" id="sr3" /></li>

</ul>

<input type="button" value="Wyznacz" onclick="Wyznacz()" />

<h4>Najwyższa średnia:</h4>

<span id="wynik"></span>

 

<script>

function Wyznacz(){

var sr1 = parseFloat(document.getElementById("sr1").value);

var sr2 = parseFloat(document.getElementById("sr2").value);

var sr3 = parseFloat(document.getElementById("sr3").value);

if(sr1 <= 0 || sr2 <= 0 || sr3 <= 0){

var srednia = "zle";

alert("zle");

document.getElementById("wynik").innerHTML = "zle";

}

document.getElementById("wynik").innerHTML = Math.max(sr1,sr2,sr3);

 

}

</script>

 

 

 

</div>

<div id="prawy">

<table border="4" style="border:1mm ridge black;height: 15em;width:100%;height:320px">

  <tr>

    <th>Tresc zapytania</th>

    <th>Zrzut ekranu</th> 

  </tr>

  <tr>

    <td style="height:200px;width:400px">treść zapytania</td>

    <td style="width:400px">ss</td> 

  </tr>

  <tr>

    <td style="height:200px">treść zapytania</td>

    <td style="width:400px">ss</td> 

  </tr>

</table>

</div>

<div id="stopka">

<h4>Stronę wykonał:</h4>

</div>

</body>

</html>