Taylor658 commited on
Commit
50a1221
·
1 Parent(s): b01c5d2

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +7 -8
index.html CHANGED
@@ -14,10 +14,13 @@
14
  .header {
15
  background: #ffcc00;
16
  padding: 20px;
17
- text-align: center;
 
 
18
  }
19
  .header img {
20
  width: 150px;
 
21
  }
22
  .nav {
23
  background: #333;
@@ -47,11 +50,11 @@
47
  <div class="header">
48
  <!-- Logo image -->
49
  <img src="medquestion.png" alt="7b-Nov23">
 
50
  </div>
51
 
52
-
53
  <div class="main">
54
- <iframe src="https://huggingfaceh4-zephyr-chat.hf.space" style="width:100%; height:600px; border:none;"></iframe>
55
  </div>
56
 
57
  <div class="footer">
@@ -59,8 +62,4 @@
59
  </div>
60
 
61
  </body>
62
- </html>
63
-
64
-
65
- </body>
66
- </html>
 
14
  .header {
15
  background: #ffcc00;
16
  padding: 20px;
17
+ display: flex; /* Use flexbox to layout the children horizontally */
18
+ align-items: center; /* Align children vertically in the center */
19
+ justify-content: flex-start; /* Align children to the start (left) */
20
  }
21
  .header img {
22
  width: 150px;
23
+ margin-right: 20px; /* Add some space between the image and the following content */
24
  }
25
  .nav {
26
  background: #333;
 
50
  <div class="header">
51
  <!-- Logo image -->
52
  <img src="medquestion.png" alt="7b-Nov23">
53
+ <!-- Rest of the header content goes here -->
54
  </div>
55
 
 
56
  <div class="main">
57
+ <iframe src="https://huggingfaceh4-zephyr-chat.hf.space" style="width:100%; height:600px; border:none;"></iframe>
58
  </div>
59
 
60
  <div class="footer">
 
62
  </div>
63
 
64
  </body>
65
+ </html>