BIS

by Ben Clayton

HTML

<div class="headerr">
  <div class="oltheader outer1">
    <div class="outer2">
      <div class="left">
        Online Test Plus
      </div>
      <div class="right">
        <div class="top">
          Powered by:
        </div>
        <div class="bottom">
          Business Integration Softwarehouse Ltd.
        </div>
      </div>
    </div>
  </div>
</div>

CSS

body {
  font-size: 10px;
}

.headerl {
  display: inline-block;
  width: 100px;
}
.headerr {
  display: inline-block;
  margin-top:12px;
  float:right;
  width:82%;
   margin-right:20px;
}

.oltheader {
  margin: 0;
  font-family: 'Karla', sans-serif;
  font-weight: bold;
  color: #000;
  text-rendering: optimizelegibility;
  width: 100%;
  height: 70px;
  text-align: center;
  vertical-align: middle;
}

.oltheader.outer1 {
  border: 2px solid black;
  border-radius: 10px;
  background-color: yellow;
  padding: 4px;
  height: 100%;
  width: 100%;
  box-shadow: inset 2px 2px 1px 1px rgba(0, 0, 0, 0.2);
 
}

.oltheader .outer2 {
  border: 2px solid #8080FF;
  padding:4px;
  border-radius: 10px;
  background-color: white;
  height: 100%;
  box-shadow: inset 2px 2px 1px 1px rgba(0, 0, 80, 0.2);
}

.oltheader .left {
  display: inline-block;
  width: 46%;
  font-size: 36px;
  color: #8080FF;
}

.oltheader .right {
  display: inline-block;
  width: 46%;
}

.oltheader .top {
  font-size: 12px;
  color: #000000;
  width: 100%
}

.oltheader .bottom {
  font-size: 18px;
  color: #8080FF;
  width: 100%
}