-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (84 loc) · 4.17 KB
/
index.html
File metadata and controls
107 lines (84 loc) · 4.17 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<!--Kristian Reyes 5/10/2020 -->
<title>Homework 1</title>
<meta charset="utf-8">
<meta name="description" content="final project for CNIT 132">
<meta name="keywords" content="HTML, CSS, CCSF, Student">
<meta name="author" content="Kristian Reyes">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<!--bootstrap -->
<!-- favicon code -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!-- favicon code -->
<link rel="stylesheet" href="shorttask.css">
</head>
<body>
<main class="grid">
<header class="grid-area grid-area-1">
<h1>Kristian Reyes - CNIT132 </h1>
</header>
<nav class="grid-area grid-area-2">
<ul id="nobullets">
<li>
<a href="homework1final.html" title="Home Page">
Home
</a>
</li>
<li>
<a href="assignments.html" title="Assignments Page">
Assignments
</a>
</li>
<li>
<a href="meetupfinal.html" title="Meetup Report Page">
Meetup Report
</a>
</li>
<li>
<a href="contact.html" title="Contact Page">
Contact
</a>
</li>
</ul>
</nav>
<section class="grid-area grid-area-3">
<img src="kr_pic.jpg" class="krpic" alt="picture of Kristian Reyes">
<p>
My name is <strong>Kristian</strong>. I currently work as a <em>technical writer</em> for a fintech company, producing <strong>documentation </strong> related to our products.
</p>
<p>
I am taking this class as part of the <strong> Web Application Programming</strong> certificate. My end goal is increase my <em>technical knowledge </em> and skill set. I've dabbled with HTML/CSS in other classes and come across it in my work.
</p>
<p>
One of my favorite sites is <a href="https://www.saveur.com/recipes-search/" title="Saveur Recipes" target="_blank" rel="noopener"> Saveur</a>. In my spare time, I enjoy cooking up meals, especially with new recipes. Saveur has inventive, easy-to-follow recipes, with inspiring pictures. They have recipes for global cuisines and for every palate.
</p>
<p>
Did you know City College of San Francisco offers <a href="http://www.ccsf.edu/en/student-services/student-counseling.html#accessibility-text-size" title="City College of San Francisco Counseling " target="_blank" rel="noopener">counseling services?</a> There are academic, career, and transfer counseling services available, as well as Disabled Students Programs and Services.
<h2> Good Links </h2>
<ul>
<li><a href="https://opensource.com/tags/web-development" title="Open Source Web Development" target="_blank" rel="noopener"> Open Source Web Development:</a> Excellent resource page related to open source web development. Links related to open source software and tools.
</li>
<li><a href="https://idratherbewriting.com/category-web-design/" target="_blank" title="Tom Johnson's I'd Rather Be Writing" rel="noopener"> I'd Rather Be Writing:</a> Tom Johnson covers technical writing trends. He covers topics related to web based documentation and design.
</li>
<li><a href="https://www.lynda.com/Web-Development-training-tutorials/1471-0.html" title="Lynda.com Web Development" target="_blank" rel="noopener"> Lynda - Web Development:</a> Lynda.com offers online, self-paced courses. They are free with a San Francisco Library card.
</li>
</ul>
</section>
<footer class="grid-area grid-area-4">
<p>
© 2020 Kristian Reyes
</p>
</footer>
</main>
</body>
</html>