-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (59 loc) · 2.95 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<header>
<div>
<h1>Tenzin Kalsang's - PortFolio</h1>
<h2>Student @ <a href="https://www.thinkful.com" target="_blank">thinkFul</a></h2>
</div>
</header>
<hr>
<!-- image is excluded from the <main> as it was colliding with <section> for margin and padding-->
<img src="img.jpg" alt="myphoto">
<main class="main">
<section class="intro">
<ul>
<li>
<h2> > Intro</h2>
</li>
</ul>
<p><strong>Hi!</strong> My name is Tenzin Kalsang and I live in New York.</p> <!--- excluded seperate on its own -->
<ul>
<li>
<h2> > About Me </h2>
</li>
</ul>
<ol>
<li>
<p>My passion to become a developer is what drives me every single day and an opportunity to work, learn and experience with like minded and greater are irreplaceable.</p>
</li>
<li>
<p>Other than technology, Design patterns and creativity seems interesting. I do Calisthenic workouts, and interested in playing soccer , cricket and basketball. I am a fan of WRC and X games. Collecting non-fiction books, good music ( guitar solos and drum sets ) and arts ( like Leonardo Da Vinci and the Wright brothers ). The cooking part, I try to eat clean as the foods are the medicine. </p>
</li>
</ol>
</section>
</main>
<article class="art">
<h3>A brief scope on my track</h3>
<p>While doing different jobs and I have been learning to code for a long time. Following through many tutorials and online sources like Codecademy, Teamtreehouse, freecodeCamp, Udemy, and coaches in Youtube with an Interactive frontend web development Book by John Duckett. I was determined but lost. And after Interacting with some coding boot camps, I joined thinkful and I am very happy to be a part of it. </p>
</article>
<hr>
<!-- <nav> excluding on its own for margin and padding issues-->
<nav class="contact">
<h2> > Contact</h2>
<h2><a href="https://www.linkedin.com/in/tenzin-kalsang-109b1b145" target="_blank">Linkedin</a></h2> <!--first <h3> tag was inserted in the <a> tag, then the link blinks even without pointing onto it. so <h3> is wrapped around <a> tag.-->
<h2><a href="https://github.com/Tenzin-Kalsang" target="_blank">GitHub</a></h2>
</nav>
<footer class="foot">
<p>E-mail: <a href="mailto:[email protected]" target="_blank"> [email protected] </a></p>
<p>2021 © All rights reserved</p>
</footer>
<script src="script.js"></script>
</body>
</html>