You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
787 B
HTML
29 lines
787 B
HTML
|
5 years ago
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Business Card</title>
|
||
|
|
<link rel="stylesheet" href="cardStyles.css">
|
||
|
|
<!-- block comment key : Shift + Alt + A -->
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<section class="card">
|
||
|
|
<header>
|
||
|
|
<h2>Yik Teng Hie</h2>
|
||
|
|
</header>
|
||
|
|
<article>
|
||
|
|
<img src="cv.jpg" alt="Bart">
|
||
|
|
<p>123 Edgedale Plain <br>
|
||
|
|
#11-233 <br>
|
||
|
|
Singapore <br>
|
||
|
|
Tel : 65 - 88890820 <br>
|
||
|
|
Mail: net@gmail.com <br>
|
||
|
|
</p>
|
||
|
|
</article>
|
||
|
|
<footer>
|
||
|
|
<p>Coding, testing and development services</p>
|
||
|
|
</footer>
|
||
|
|
</section>
|
||
|
|
</body>
|
||
|
|
</html>
|