Skip to content

Instantly share code, notes, and snippets.

@MaxySpark
Created August 23, 2017 16:42
Show Gist options
  • Select an option

  • Save MaxySpark/7c37151d9b9c50b3ec362d1d3fef0515 to your computer and use it in GitHub Desktop.

Select an option

Save MaxySpark/7c37151d9b9c50b3ec362d1d3fef0515 to your computer and use it in GitHub Desktop.
Web Technology Assigment
body {
background-color: gray;
text-align: center;
color: white;
font-family: Courier New, Courier, monospace;
/* font-size: 25px; */
}
a {
font-size: 2em;
font-weight: bold;
}
a:active {
background-color: blue;
color: white;
}
a:visited {
color: green;
}
a:link {
color: yellowgreen;
}
#first {
font-size: 25px;
}
img {
height: 500px;
}
table {
border: 5px solid brown;
font-size: 20px;
}
th,tr,td {
border: 2px solid black;
}
th {
font-size: 30px;
}
td {
font-style: italic;
font-weight: bold;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Assignment</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Web Technology - Assignment</h1>
<h2>This is a H2 Heading</h2>
<h3>This is a H3 Heading</h3>
<h4>This is a H4 Heading</h4>
<h5>This is a H5 Heading</h5>
<h6>This is a H6 Heading</h6>
<hr>
<div id="first">
<p>
Use formating element to make text
<b>BOLD</b>, <br>
<strong>Important</strong>, <br>
<i>Italic</i>, <br>
<em>Emphasized</em>, <br>
<mark>Marked</mark>, <br>
<small>Small</small>, <br>
<del>Deleted</del>, <br>
<ins>Inserted</ins>, <br>
<sub>Subscript</sub>, <br>
<sup>Superscript</sup>
</p>
</div>
<hr>
<p>
<a href="https://github.com/MaxySpark" >My Github Profile</a>
</p>
<hr>
<div>
<img src="code.jpg" alt="Image">
</div>
<hr>
<div>
<h2>HyperLink Image</h2>
<br>
<a href="http://maxyspark.com">
<img src="maxyspark.jpg" alt="Click Me">
</a>
</div>
<hr>
<div>
<table align="center">
<tr>
<th colspan="4">
Time Table
</th>
</tr>
<tr>
<th>
8am - 9am
</th>
<th>
9am - 10am
</th>
<th>
10am - 11am
</th>
<th>
11am - 12pm
</th>
</tr>
<tr>
<td>English</td>
<td>Mathematics</td>
<td>Science</td>
<td rowspan="3">Break</td>
</tr>
<tr>
<td>English</td>
<td>Mathematics</td>
<td>Science</td>
</tr>
<tr>
<td>English</td>
<td>Mathematics</td>
<td>Science</td>
</tr>
</table>
</div>
<hr>
<h2>SUBMITED BY</h2>
<h3>BHARGAB HAZARIKA</h3>
<h3>ROLL No - 140310007013</h3>
<br>
<hr>
<br>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment