HTML ile Mavi Ekran Hatası

6 ay kadar minik bir aradan sonra merhabalar. İçinde bulunduğum boşluktan yararlanarak ben silah altındayken neler konuşulmuş diye bakınıyordum. Çıkış yolum Jan Reimers’ın çalışmaları oldu. İşte karşınızda HTML ve CSS ile hazırlanmış güzel tasarlanmış bir blue screen örneği.

CSS Kodları : 

* { box-sizing: border-box; }
html, body {
height: 100%;
}
body {
font-family: 'Courier', 'Courier New', monospace;
font-weight: bold;
}
#screen {
background: #00a;
width: 640px;
margin: 1em auto 0 auto;
padding: 3.5em 1em;
border: 20px solid #ccc;
}
header {
text-align: center;
margin-bottom: 2em;
}
h1 {
background: #aaa;
color: #00a;
display: inline-block;
padding: 0.1em 0.8em 0.1em 0.4em;
font-size: 0.9em;
}
p {
color: #fff;
font-size: 0.9em;
line-height: 1.4em;
margin-bottom: 1.4em;
}
p:last-child {
text-align: center;
margin-bottom: 0;
}

HTML Kodları : 

<div id="screen">
 <header>
 <h1>Windows</h1>
 </header>
 <p>A fatal exception 0E has occured at 0028:C562F1B7 in VXD ctpci9x(05)<br/>+ 00001853. The current application will be terminated.</p>
 <p>*&nbsp;&nbsp;Press any key to terminate the current application.<br/>
 *&nbsp;&nbsp;Press CTRL+ALT+DEL again to restart your computer. You will lose any unsaved information in all applications.
 </p>
 <p>Press any key to continue _</p>
</div>

Sizlere de Jan’ı takip etmenizi öneririm.

Görüşmek üzere.