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
| <%@ Page Language="VB" AutoEventWireup="false" CodeFile="bonjour.aspx.vb" Inherits="bonjour" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Page de Test</title>
<style type="text/css">
#bonjour {
margin-top:100px;
margin-left:100px;
font-family:'Lucida Console', Verdana, 'Trebuchet MS',Arial;
font-weight:bold;
color: white;
text-align:center;
background-color:blue;
border:thin solid red;
width:300px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<div id="bonjour">
Bonjour tout le monde
</div>
</div>
</form>
</body>
</html> |
Partager