<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Terrence Powell</title>
    <description>The latest articles on DEV Community by Terrence Powell (@tpowell47).</description>
    <link>https://dev.to/tpowell47</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1232149%2F02c5c2e8-9d23-4f13-9385-0c9f5b2ef83e.jpeg</url>
      <title>DEV Community: Terrence Powell</title>
      <link>https://dev.to/tpowell47</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tpowell47"/>
    <language>en</language>
    <item>
      <title>Building a prototype website</title>
      <dc:creator>Terrence Powell</dc:creator>
      <pubDate>Sat, 16 Dec 2023 00:03:12 +0000</pubDate>
      <link>https://dev.to/tpowell47/building-a-prototype-website-58jp</link>
      <guid>https://dev.to/tpowell47/building-a-prototype-website-58jp</guid>
      <description>&lt;p&gt;Since this morning, I have been working on building a prototype website as a fun way of getting the hang of HTML.&lt;br&gt;
I posted my code for the prototype below, the end goal is to have it display multiple videos at once. Right now, I have one embedded video embedded from one of my favorite educational YouTube channels, PBS SpaceTime. I've entered my code below, expect for an update tomorrow and a change in concept. The first version of it is just to see how to embed videos and code the bullet list in HTML files.&lt;/p&gt;

&lt;p&gt;What I like about the website:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It is playing the embedded video fine&lt;/li&gt;
&lt;li&gt;It includes a title and bullet points stating my current thoughts&lt;/li&gt;
&lt;li&gt;Website makes use of attributes for later organization&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What I dislike:&lt;br&gt;
-Too much empty space&lt;br&gt;
-Very basic design overall due to lack of CSS involvement&lt;br&gt;
-Needs more videos&lt;br&gt;
-Needs to include hyperlink text&lt;br&gt;
-Lacks background color and design scheme&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--_Fjm6eck--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/31t1u3gn8e1jkuivpkn5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--_Fjm6eck--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/31t1u3gn8e1jkuivpkn5.png" alt="Image description" width="800" height="953"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;body&amp;gt;
    &amp;lt;h1&amp;gt;&amp;lt;u&amp;gt;Protowebsite&amp;lt;/u&amp;gt;&amp;lt;/h1&amp;gt;
    &amp;lt;div id="media"&amp;gt;
        &amp;lt;h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;PBS SpaceTime Discussing the recent the concept of "Attosecond"&amp;lt;/h2&amp;gt;
        &amp;lt;iframe src="https://www.youtube.com/embed/5e83QRGoRCo?si=PfZPSMWpSr6sZ4Bf"  width=1080 height="1200"       &amp;gt;
        Video is not supported -_-
        &amp;lt;/iframe&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;div id="information"&amp;gt;
        &amp;lt;h2&amp;gt;Background&amp;lt;/h2&amp;gt;
        &amp;lt;p&amp;gt; This test website was created for viewing my current skillset in terms of HTML web building.&amp;lt;br&amp;gt;
            I want to be able to create my own website after I feel this project is finished.

        &amp;lt;/p&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;div id="Progress check"&amp;gt;
        &amp;lt;h2&amp;gt;What I dislike&amp;lt;/h2&amp;gt;
        &amp;lt;ul&amp;gt;
            &amp;lt;li&amp;gt;Website lacks background &amp;lt;strong&amp;gt;color and deseign&amp;lt;/strong&amp;gt; scheme&amp;lt;/li&amp;gt;
            &amp;lt;li&amp;gt;Very basic design overall due to &amp;lt;strong&amp;gt;no CSS involment&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;
            &amp;lt;li&amp;gt;&amp;lt;strong&amp;gt;A lot of empty space&amp;lt;/strong&amp;gt; that needs to be filled somehow&amp;lt;/li&amp;gt;
            &amp;lt;li&amp;gt;Needs &amp;lt;strong&amp;gt;more videos&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;
            &amp;lt;li&amp;gt;Needs &amp;lt;strong&amp;gt;hyperlink text&amp;lt;/strong&amp;gt; for subjects/nouns included in the update&amp;lt;/li&amp;gt;
        &amp;lt;/ul&amp;gt;
        &amp;lt;h2&amp;gt;What I like&amp;lt;/h2&amp;gt;
        &amp;lt;ul&amp;gt;
            &amp;lt;li&amp;gt;Website is playing video just fine&amp;lt;/li&amp;gt;
            &amp;lt;li&amp;gt;website includes titles and bullet points&amp;lt;/li&amp;gt;
            &amp;lt;li&amp;gt;website shows that I know how to scale and embed youtube videos&amp;lt;/li&amp;gt;\
            &amp;lt;li&amp;gt;webiste makes use of attributes for later organization&amp;lt;/li&amp;gt;
        &amp;lt;/ul&amp;gt;

    &amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This will wrap up my first week of the DPI program and I am excited to see what's next!&lt;/p&gt;

</description>
      <category>html</category>
      <category>beginners</category>
      <category>programming</category>
      <category>learning</category>
    </item>
    <item>
      <title>First deployed website</title>
      <dc:creator>Terrence Powell</dc:creator>
      <pubDate>Fri, 15 Dec 2023 01:28:13 +0000</pubDate>
      <link>https://dev.to/tpowell47/first-deployed-website-2p4l</link>
      <guid>https://dev.to/tpowell47/first-deployed-website-2p4l</guid>
      <description>&lt;p&gt;It's been less than a week since I started the DPI Introduction to software development course and I am growing in confidence for transitioning into the software/Data engineering space from the Information technology industry. Yesterday, I deployed my first website via GitHub using an HTML file.&lt;br&gt;
This is a pretty significant step for me, as I have heard the term "Deployment" thrown around a lot at the tech company I do IT for, but never understood how the engineers fulfill this.&lt;/p&gt;

&lt;p&gt;Now that I have gotten a taste for the deployment process, today I begin learning HTML and CCS for the course. I will post an update on how this goes tomorrow. As of now, I have some experience with HTML syntax, but none with CSS. &lt;/p&gt;

</description>
      <category>beginners</category>
      <category>programming</category>
      <category>html</category>
      <category>github</category>
    </item>
  </channel>
</rss>
